Faster scaled evaluation, etc.

This commit is contained in:
maartenkeijzer 2005-10-07 13:31:20 +00:00
commit 3ca7c0f6f4
9 changed files with 76 additions and 27 deletions

View file

@ -23,8 +23,6 @@
using namespace std;
eoRng rng(time(0));
extern Sym default_const();
class LanguageImpl {

View file

@ -23,6 +23,8 @@ class Sym;
/** Base class for selecting nodes */
class NodeSelector {
public:
virtual ~NodeSelector() {}
virtual unsigned select_node(Sym sym) const = 0;
};