mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
16 lines
337 B
C#
16 lines
337 B
C#
using Common;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BusinessLogic.Algorithms
|
|
{
|
|
public abstract class Algorithm
|
|
{
|
|
public abstract void PutModelInCanonicalForm(Model model);
|
|
public abstract void Solve(Model model);
|
|
}
|
|
}
|