mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
Lets gooooo
This commit is contained in:
15
BusinessLogic/Algorithms/Algorithm.cs
Normal file
15
BusinessLogic/Algorithms/Algorithm.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user