Packages

Fork of tmbb/dantzig tweaked for Advent of Code 2025

Current section

Files

Jump to
dantzig_adventofcode2025 lib dantzig solved_constraint.ex
Raw

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