added mps export

This commit is contained in:
Marcel Pöppe
2024-10-11 13:48:54 +02:00
parent cc0715b6ad
commit 58d6f66502
10 changed files with 429 additions and 80 deletions
+6
View File
@@ -0,0 +1,6 @@
export interface Bound{
name: string;
type: number; // 1 for lower bound, 2 for upper bound, 3 for equal
ub: number;
lb: number;
}