test.hh
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef __GECODE_TEST_TEST_HH__
00043 #define __GECODE_TEST_TEST_HH__
00044
00045 #include <gecode/kernel.hh>
00046 #include <gecode/search.hh>
00047
00048 #include <iostream>
00049 #include <sstream>
00050 #include <string>
00051
00053 namespace Test {
00054
00067 extern std::ostringstream olog;
00068
00070 class ind {
00071 public:
00073 int l;
00075 ind(int i) : l(i) {}
00076 };
00077
00078
00080 class Options {
00081 public:
00083 unsigned int seed;
00085 unsigned int iter;
00087 static const int defiter = 5;
00089 unsigned int fixprob;
00091 static const unsigned int deffixprob = 10;
00093 bool stop;
00095 bool log;
00096
00098 Options(void);
00100 void parse(int argc, char* argv[]);
00101 };
00102
00104 extern Options opt;
00105
00107 class Base {
00108 private:
00110 std::string _name;
00112 Base* _next;
00114 static Base* _tests;
00116 static unsigned int _n_tests;
00117 public:
00119 Base(const std::string& s);
00121 static void sort(void);
00123 const std::string& name(void) const;
00125 static Base* tests(void);
00127 Base* next(void) const;
00129 void next(Base* n);
00131 virtual bool run(void) = 0;
00133 static bool fixpoint(void);
00135 virtual ~Base(void);
00136
00138 static Gecode::Support::RandomGenerator rand;
00139 };
00141
00142 }
00143
00148 int main(int argc, char* argv[]);
00149
00154 std::ostream&
00155 operator<<(std::ostream& os, const Test::ind& i);
00156
00157 #include "test/test.hpp"
00158
00159 #endif
00160
00161