The homology engine that uses the Bill Kalies' engine: the version which uses the lookup table for reduction. More...
#include <engines.h>
Public Member Functions | |
int | speed () const |
The speed of the engine: The higher the number, the better. | |
const char * | name () const |
The name of the engine to be used in the command line. | |
std::ostream & | describe (std::ostream &out) const |
Describes this particular engine. | |
Static Public Attributes | |
static BK_LTengine | eng |
One instance of this engine. | |
Protected Member Functions | |
BK_LTengine () | |
The default constructor. | |
~BK_LTengine () | |
The destructor. |
The homology engine that uses the Bill Kalies' engine: the version which uses the lookup table for reduction.
Definition at line 366 of file engines.h.
chomp::homengin::BK_LTengine::BK_LTengine | ( | ) | [inline, protected] |
The default constructor.
Definition at line 370 of file engines.h.
References chomp::homengin::BKengine::useLookupTable.
{ useLookupTable = true; return; }
chomp::homengin::BK_LTengine::~BK_LTengine | ( | ) | [inline, protected] |
std::ostream& chomp::homengin::BK_LTengine::describe | ( | std::ostream & | out | ) | const [virtual] |
Describes this particular engine.
Reimplemented from chomp::homengin::BKengine.
const char* chomp::homengin::BK_LTengine::name | ( | ) | const [inline, virtual] |
The name of the engine to be used in the command line.
Reimplemented from chomp::homengin::BKengine.
Definition at line 390 of file engines.h.
{ return "BK_LT"; }
int chomp::homengin::BK_LTengine::speed | ( | ) | const [inline, virtual] |
The speed of the engine: The higher the number, the better.
Reimplemented from chomp::homengin::BKengine.
Definition at line 384 of file engines.h.
{
return 260;
}
One instance of this engine.
Reimplemented from chomp::homengin::BKengine.