Files
2025-05-29 22:31:40 +03:00

17 lines
326 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
}
}