Packages

Fork of tmbb/dantzig tweaked for Advent of Code 2025

Current section

Files

Jump to
dantzig_adventofcode2025 lib dantzig variable.ex
Raw

lib/dantzig/variable.ex

defmodule Dantzig.ProblemVariable do
@moduledoc false
defstruct name: nil,
min: nil,
max: nil,
type: :real
@type variable_name :: binary()
end