This interface defines the API for classes that represent or-constraints.

Namespace: ILOG.Concert
Assembly: ILOG.Concert (in ILOG.Concert.dll) Version: 22.1.0.0

Syntax

C#
public interface IOr : IConstraint, IIntExpr, 
	INumExpr, ICopyable, IAddable
Visual Basic
Public Interface IOr _
	Inherits IConstraint, IIntExpr, INumExpr, ICopyable,  _
	IAddable

Remarks

An instance of IOr (that is, an or-constraint) indicates that at least one of a set of constraints must be satisfied. Objects of type IConstraint can be added to and removed from an instance of IOr. The constraints in an or-constraint can be queried by the enumerator returned by method GetEnumerator().

See Also