lib/gecoder/interface/constraints/fixnum_enum_constraints.rb in gecoder-0.9.0 vs lib/gecoder/interface/constraints/fixnum_enum_constraints.rb in gecoder-0.9.1
- old
+ new
@@ -4,15 +4,15 @@
# A FixnumEnumOperand is a enumeration of Fixnum on which the
# constraints defined in FixnumEnumConstraintReceiver can be placed.
# They typically service as constant arrays or constant sets.
#
# The fixnum enumeration operands are created by wrapping an enumeration
- # of fixnum Gecode::Model#wrap_enum. The enumerations created that way
+ # of fixnum Gecode::Mixin#wrap_enum. The enumerations created that way
# all respond to the properties defined by FixnumEnumOperand.
#
# ==== Examples
#
- # Uses Gecode::Model#wrap_enum inside a problem formulation to create
+ # Uses Gecode::Mixin#wrap_enum inside a problem formulation to create
# a FixnumEnumOperand from an existing enumeration of Fixnum:
#
# fixnum_enum = wrap_enum([3, 5, 7])
#
#--