mirror of
https://github.com/mrfluffy-dev/lpr.git
synced 2026-01-17 02:10:33 +00:00
16 lines
392 B
C#
16 lines
392 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Common
|
|
{
|
|
public class Constraint
|
|
{
|
|
public List<DecisionVariable> DecisionVariables { get; set; } = new List<DecisionVariable>();
|
|
public InequalitySign InequalitySign { get; set; }
|
|
public double RightHandSide { get; set; }
|
|
}
|
|
}
|