using System; using System.Collections.Generic; using System.Text; using CLab.Auxiliary; namespace CLab { /// /// LayoutTypeBool represents a boolean type /// public class LayoutTypeBool : LayoutType { /// /// Constructor /// /// Name of the type /// Domain size public LayoutTypeBool(String typeName, int domSize) : base(typeName, booleanVarNumber(domSize), domSize) { } public override string ToString() { return String.Format(" {0}", base.ToString()); } } }