1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
// -*- c++ -*-
//*****************************************************************************
/** @file GroebnerStrategyTest.cc
*
* @author Ket Kalda, Alexander Dreyer
* @date 2011-03-15
*
* boost/test-driven unit test
*
* @par Copyright:
* (c) 2011 by The PolyBoRi Team
*
**/
//*****************************************************************************
#include <boost/test/unit_test.hpp>
#include <boost/version.hpp>
#if BOOST_VERSION < 107100
#include <boost/test/output_test_stream.hpp>
#else
#include <boost/test/tools/output_test_stream.hpp>
#endif
using boost::test_tools::output_test_stream;
#include <polybori/groebner/groebner_alg.h>
USING_NAMESPACE_PBORI
USING_NAMESPACE_PBORIGB
struct Fstrat {
Fstrat(const BoolePolyRing& input_ring = BoolePolyRing(1000)):
ring(input_ring),
x(0, input_ring), y(1, input_ring), z(2, input_ring),
v(3, input_ring), w(4, input_ring) {
BOOST_TEST_MESSAGE( "setup fixture" );
}
~Fstrat() { BOOST_TEST_MESSAGE( "teardown fixture" ); }
BoolePolyRing ring;
BooleVariable x, y, z, v, w;
};
BOOST_FIXTURE_TEST_SUITE(GroebnerStrategyTestSuite, Fstrat )
BOOST_AUTO_TEST_CASE(test_nf) {
GroebnerStrategy strat(ring);
for (int i=0;i<1000;i++){
strat.addGenerator(BoolePolynomial(BooleVariable(i, ring)+BoolePolynomial(true,ring)));
}
///@TODO: GroebnerStrategy needs more tests
BoolePolynomial poly = x+1;
BOOST_CHECK_EQUAL(strat.nf(poly), BoolePolynomial(0 ,ring));
}
BOOST_AUTO_TEST_SUITE_END()
|