X-Git-Url: https://ruin.nu/git/?p=germs.git;a=blobdiff_plain;f=src%2Fmodel.h;h=52e4d747c4b6eb0677e18805cc30230244e6102f;hp=9ebcb23818960d722bbee289a5c299849000330d;hb=d7c119fefaf9cce07974afbefb4b6a017689a961;hpb=efe42ca948704593c847996d0ae8da71d15bb75b diff --git a/src/model.h b/src/model.h index 9ebcb23..52e4d74 100644 --- a/src/model.h +++ b/src/model.h @@ -22,9 +22,10 @@ #define __MODEL_H__ #include -#include class SortAction; +class GeneOrder; + namespace Models { class ModelImpl; } @@ -35,9 +36,9 @@ class Model{ Model(Models::ModelImpl* model); - double score(const SortAction& sa) const; + double score(const SortAction& sa, const GeneOrder& go) const; - std::string name() const; + const char* name() const; private: ModelPointer _impl;