#include <fstream.h>
+#include <signal.h>
#include <std/new.h>
#include <stdlib.h>
#include "debug.hh"
assert(false);
}
+void
+float_handler(int)
+{
+ cerr << "Floating point exception .. \n"<< flush;
+ assert(false);
+}
void
debug_init()
{
set_new_handler(&mynewhandler);
set_matrix_debug(monitor);
+ signal(SIGFPE, float_handler);
}
bool check_debug=false;
#include "inputcommands.hh"
#include "molecule.hh"
#include "plist.cc"
-
+#include "staffcommands.hh"
IPL_instantiate(Atom);
IPL_instantiate(Command);
IPL_instantiate(Atom);
-IPL_instantiate(Command);
IPL_instantiate(Input_command);
IPL_instantiate(Commands_at);
+IPL_instantiate(Staff_commands_at);
IPL_instantiate(Input_staff);
IPL_instantiate(Input_music);