Current section
Files
Jump to
Current section
Files
lib/dantzig/solved_constraint.ex
defmodule Dantzig.SolvedConstraint do
@moduledoc """
A constraint that has been solved for the value of one of the variables
"""
@type t :: %__MODULE__{}
defstruct name: nil,
variable: nil,
operator: nil,
expression: nil,
metadata: nil
end