Generated on Tue May 22 09:40:20 2018 for Gecode by doxygen 1.6.3

test.hh

Go to the documentation of this file.
00001 /* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
00002 /*
00003  *  Main authors:
00004  *     Christian Schulte <schulte@gecode.org>
00005  *
00006  *  Contributing authors:
00007  *     Mikael Lagerkvist <lagerkvist@gecode.org>
00008  *
00009  *  Copyright:
00010  *     Christian Schulte, 2005
00011  *     Mikael Lagerkvist, 2005
00012  *
00013  *  This file is part of Gecode, the generic constraint
00014  *  development environment:
00015  *     http://www.gecode.org
00016  *
00017  *  Permission is hereby granted, free of charge, to any person obtaining
00018  *  a copy of this software and associated documentation files (the
00019  *  "Software"), to deal in the Software without restriction, including
00020  *  without limitation the rights to use, copy, modify, merge, publish,
00021  *  distribute, sublicense, and/or sell copies of the Software, and to
00022  *  permit persons to whom the Software is furnished to do so, subject to
00023  *  the following conditions:
00024  *
00025  *  The above copyright notice and this permission notice shall be
00026  *  included in all copies or substantial portions of the Software.
00027  *
00028  *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
00029  *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
00030  *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
00031  *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
00032  *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
00033  *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
00034  *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
00035  *
00036  */
00037 
00038 #ifndef __GECODE_TEST_TEST_HH__
00039 #define __GECODE_TEST_TEST_HH__
00040 
00041 #include <gecode/kernel.hh>
00042 #include <gecode/search.hh>
00043 
00044 #include <iostream>
00045 #include <sstream>
00046 #include <string>
00047 
00049 namespace Test {
00050 
00063   extern std::ostringstream olog;
00064 
00066   class ind {
00067   public:
00069     int l;
00071     ind(int i) : l(i) {}
00072   };
00073 
00074 
00076   class Options {
00077   public:
00079     unsigned int seed;
00081     unsigned int iter;
00083     static const int defiter = 5;
00085     unsigned int fixprob;
00087     static const unsigned int deffixprob = 10;
00089     bool stop;
00091     bool log;
00092 
00094     Options(void);
00096     void parse(int argc, char* argv[]);
00097   };
00098 
00100   extern Options opt;
00101 
00103   class Base {
00104   private:
00106     std::string _name;
00108     Base* _next;
00110     static Base* _tests;
00112     static unsigned int _n_tests;
00113   public:
00115     Base(const std::string& s);
00117     static void sort(void);
00119     const std::string& name(void) const;
00121     static Base* tests(void);
00123     Base* next(void) const;
00125     void next(Base* n);
00127     virtual bool run(void) = 0;
00129     static bool fixpoint(void);
00131     virtual ~Base(void);
00132 
00134     static Gecode::Support::RandomGenerator rand;
00135   };
00137 
00138 }
00139 
00144 int main(int argc, char* argv[]);
00145 
00150 std::ostream&
00151 operator<<(std::ostream& os, const Test::ind& i);
00152 
00153 #include "test/test.hpp"
00154 
00155 #endif
00156 
00157 // STATISTICS: test-core