Skip to content

Commit 2b868d6

Browse files
committed
deps and test basics
1 parent f0b85e0 commit 2b868d6

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

Project.toml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
name = "ModelAnalyzer"
22
uuid = "d1179b25-476b-425c-b826-c7787f0fff83"
33
version = "0.1.0"
4+
5+
[deps]
6+
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
7+
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
8+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
9+
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
10+
OrderedCollections = "bac558e1-5e72-5ebc-8fee-abe8a469f55d"
11+
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
12+
13+
[compat]
14+
MathOptInterface = "1.37.0"

test/Project.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[deps]
2+
HiGHS = "87dc4568-4c63-4d18-b0c0-bb2238e4078b"
3+
JuMP = "4076af6c-e467-56ae-b986-b466b2749572"
4+
MathOptInterface = "b8f27783-ece8-5eb3-8dc8-9495eed66fee"
5+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Copyright (c) 2025: Joaquim Garcia, Oscar Dowson and contributors
2+
#
3+
# Use of this source code is governed by an MIT-style license that can be found
4+
# in the LICENSE.md file or at https://opensource.org/licenses/MIT.
5+
6+
import ModelAnalyzer
7+
import MathOptInterface as MOI
8+
using Test
9+
using JuMP
10+

0 commit comments

Comments
 (0)