Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
odow committed Sep 27, 2023
1 parent f0e8137 commit 1770686
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
10 changes: 9 additions & 1 deletion src/FileFormats/MOF/MOF.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,16 @@ import OrderedCollections: OrderedDict
import JSON
import MathOptInterface as MOI

const SCHEMA_PATH = joinpath(@__DIR__, "mof.1.6.schema.json")
"""
SCHEMA_PATH::String
The path to the latest version of the MathOptFormat schema supported by
MathOptInterface.
"""
const SCHEMA_PATH = joinpath(@__DIR__, "mof.schema.json")

const VERSION = v"1.6"

const SUPPORTED_VERSIONS = (
v"1.6",
v"1.5",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -442,7 +442,7 @@
}
}
}, {
"description": "The vector-valued nonlinear function `f(x)`.",
"description": "The vector-valued nonlinear function `f(x)`, comprised of a vector of `ScalarNonlinearFunction`.",
"required": ["rows", "node_list"],
"properties": {
"type": {
Expand Down

0 comments on commit 1770686

Please sign in to comment.