~jozilla/uiml.net/uiml.net-tp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
  Cassowary.net: an incremental constraint solver for .NET
  (http://lumumba.uhasselt.be/jo/projects/cassowary.net/)
  
  Copyright (C) 2005  Jo Vermeulen (jo.vermeulen@uhasselt.be)
  
  This program is free software; you can redistribute it and/or
  modify it under the terms of the GNU Lesser General Public License
  as published by the Free Software Foundation; either version 2.1
  of  the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU Lesser General Public License for more details.

  You should have received a copy of the GNU Lesser General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

using System;

namespace Cassowary
{
  public class ClLinearEquation : ClLinearConstraint
  {
    public ClLinearEquation(ClLinearExpression cle,
                            ClStrength strength,
                            double weight) : base(cle, strength, weight)
    {}

    public ClLinearEquation(ClLinearExpression cle,
                            ClStrength strength) : base(cle, strength)
    {}

    public ClLinearEquation(ClLinearExpression cle) : base(cle)
    {}

    public ClLinearEquation(ClAbstractVariable clv,
                            ClLinearExpression cle,
                            ClStrength strength,
                            double weight) : base(cle, strength, weight)
    {
      _expression.AddVariable(clv, -1.0);
    }

    public ClLinearEquation(ClAbstractVariable clv,
                            ClLinearExpression cle,
                            ClStrength strength) : this(clv, cle, strength, 1.0)
    {}

    public ClLinearEquation(ClAbstractVariable clv, 
                            ClLinearExpression cle) : this(clv, cle, ClStrength.Required, 1.0)
    {}

    public ClLinearEquation(ClAbstractVariable clv, 
                            double val, 
                            ClStrength strength, 
                            double weight) : base(new ClLinearExpression(val), strength, weight)
    {
      _expression.AddVariable(clv, -1.0);
    }

    public ClLinearEquation(ClAbstractVariable clv,
                            double val,
                            ClStrength strength) : this(clv, val, strength, 1.0)
    {}

    public ClLinearEquation(ClAbstractVariable clv,
                            double val) : this(clv, val, ClStrength.Required, 1.0)
    {}

    public ClLinearEquation(ClLinearExpression cle,
                            ClAbstractVariable clv,
                            ClStrength strength,
                            double weight) : base((ClLinearExpression) cle.Clone(), strength, weight)
    {
      _expression.AddVariable(clv, -1.0);
    }

    public ClLinearEquation(ClLinearExpression cle,
                            ClAbstractVariable clv,
                            ClStrength strength) : this(cle, clv, strength, 1.0)
    {}

    public ClLinearEquation(ClLinearExpression cle, ClAbstractVariable clv) : this(cle, clv, ClStrength.Required, 1.0)
    {}

    public ClLinearEquation(ClLinearExpression cle1,
                            ClLinearExpression cle2,
                            ClStrength strength,
                            double weight) : base((ClLinearExpression) cle1.Clone(), strength, weight)
    {
      _expression.AddExpression(cle2, -1.0);
    }

    public ClLinearEquation(ClLinearExpression cle1,
                            ClLinearExpression cle2,
                            ClStrength strength) : this(cle1, cle2, strength, 1.0)
    {}
        
    public ClLinearEquation(ClLinearExpression cle1, 
                            ClLinearExpression cle2) : this(cle1, cle2, ClStrength.Required, 1.0)
    {}

    public override string ToString()
    {
      return base.ToString() + " = 0)";
    }
  }
}