16 lines
325 B
C#
16 lines
325 B
C#
namespace Obi
|
|
{
|
|
public class NullBackend : IObiBackend
|
|
{
|
|
#region Solver
|
|
public ISolverImpl CreateSolver(ObiSolver solver, int capacity)
|
|
{
|
|
return new NullSolverImpl();
|
|
}
|
|
public void DestroySolver(ISolverImpl solver)
|
|
{
|
|
}
|
|
#endregion
|
|
}
|
|
}
|