henon

Unnamed repository; edit this file 'description' to name the repository.
git clone git://fqcor.com/henon.git
Log | Files | Refs | README | LICENSE

henon.cpp (319B)


      1 #include <iostream>
      2 #include <fstream>
      3 #include <gtkmm.h>
      4 #include "gnuplot-iostream/gnuplot-iostream.h"
      5 
      6 using namespace std;
      7 
      8 double dt=0.01;
      9 
     10 #include "RK.h"
     11 #include "socketwindow.h"
     12 
     13 int main(int argc, char** argv){
     14 	auto app = Gtk::Application::create(argc, argv);
     15 	SocketWindow win;
     16 	app->run(win);
     17 	return 0;
     18 }