24 lines
257 B
C++
24 lines
257 B
C++
#include <assert.h>
|
|
|
|
#include "Solver.h"
|
|
|
|
void MbD::Solver::initialize()
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
void MbD::Solver::initializeLocally()
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
void MbD::Solver::initializeGlobally()
|
|
{
|
|
assert(false);
|
|
}
|
|
|
|
void MbD::Solver::run()
|
|
{
|
|
assert(false);
|
|
}
|