-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCode.cs
61 lines (54 loc) · 1.16 KB
/
Code.cs
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
using System;
using System.Linq;
namespace Cream
{
public class Code : ICloneable
{
virtual public Network To
{
set
{
for (var i = 0; i < conditions.Length; i++)
{
if (conditions[i] == null)
{
value.GetConstraint(i).ClearCondition();
}
else
{
conditions[i].To = value;
}
}
}
}
public Condition[] conditions;
private Code()
{
}
public Code(Network network)
{
System.Collections.IList constraints = network.Constraints;
conditions = new Condition[constraints.Count];
for (var i = 0; i < conditions.Length; i++)
{
var c = network.GetConstraint(i);
conditions[i] = c.ExtractCondition();
}
}
public virtual Object Clone()
{
var code = new Code {conditions = new Condition[conditions.Length]};
conditions.CopyTo(code.conditions, 0);
return code;
}
public virtual System.Collections.IList Operations()
{
System.Collections.IList operations = new System.Collections.ArrayList();
foreach (var t in conditions.Where(t => t != null))
{
SupportClass.CollectionSupport.AddAll(operations, t.Operations());
}
return operations;
}
}
}