forked from gnboorse/centipede
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariable.go
179 lines (150 loc) · 5.1 KB
/
variable.go
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// Copyright 2022 Gabriel Boorse
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package centipede
import "fmt"
// VariableName is our string type for names of variables
type VariableName string
// VariableNames collection type for VariableName
type VariableNames []VariableName
// Contains slice contains method for VariableNames
func (varnames *VariableNames) Contains(varname VariableName) bool {
for _, item := range *varnames {
if item == varname {
return true
}
}
return false
}
// Variable indicates a CSP variable of interface{} type
type Variable[T comparable] struct {
Name VariableName
Value T
Domain Domain[T]
Empty bool
}
// NewVariable constructor for Variable type
func NewVariable[T comparable](name VariableName, domain Domain[T]) Variable[T] {
return Variable[T]{Name: name, Domain: domain, Empty: true}
}
// SetValue setter for Variable value field
func (variable *Variable[T]) SetValue(value T) {
variable.Value = value
variable.Empty = false
}
// Unset the variable
func (variable *Variable[T]) Unset() {
variable.Empty = true
}
// SetDomain set the domain of the given variable
func (variable *Variable[T]) SetDomain(domain Domain[T]) {
variable.Domain = domain
}
// Variables collection type for interface{} type variables
type Variables[T comparable] []Variable[T]
// SetValue setter for Variables collection
func (variables *Variables[T]) SetValue(name VariableName, value T) {
foundIndex := -1
for index, variable := range *variables {
if variable.Name == name {
foundIndex = index
}
}
if !(foundIndex >= 0) {
panic(fmt.Sprintf("Variable not found by name %v in variables %v", name, variables))
} else {
(*variables)[foundIndex].Value = value
(*variables)[foundIndex].Empty = false
}
}
// Unset unset a variable with the given name
func (variables *Variables[T]) Unset(name VariableName) {
foundIndex := -1
for index, variable := range *variables {
if variable.Name == name {
foundIndex = index
}
}
if !(foundIndex >= 0) {
panic(fmt.Sprintf("Variable not found by name %v in variables %v", name, variables))
} else {
(*variables)[foundIndex].Empty = true
}
}
// SetDomain set the domain of the given variable by name
func (variables *Variables[T]) SetDomain(name VariableName, domain Domain[T]) {
foundIndex := -1
for index, variable := range *variables {
if variable.Name == name {
foundIndex = index
}
}
if !(foundIndex >= 0) {
panic(fmt.Sprintf("Variable not found by name %v in variables %v", name, variables))
} else {
(*variables)[foundIndex].Domain = domain
}
}
// Find find an Variable by name in an Variables collection
func (variables *Variables[T]) Find(name VariableName) *Variable[T] {
for i := 0; i < len(*variables); i++ {
if (*variables)[i].Name == name {
return &(*variables)[i]
}
}
panic(fmt.Sprintf("Variable not found by name %v in variables %v", name, variables))
}
// Contains slice contains method for Variables
func (variables *Variables[T]) Contains(name VariableName) bool {
for _, variable := range *variables {
if variable.Name == name {
return true
}
}
return false
}
// Unassigned return the number of unassigned variables
func (variables *Variables[T]) Unassigned() int {
count := 0
for _, variable := range *variables {
if variable.Empty {
count++
}
}
return count
}
// Complete indicates if all variables have been assigned to
func (variables *Variables[T]) Complete() bool {
return variables.Unassigned() == 0
}
// EvaluateDomainRemovals remove values from domain based on DomainRemovals in propagation
func (variables *Variables[T]) EvaluateDomainRemovals(domainRemovals DomainRemovals[T]) {
for _, removal := range domainRemovals {
// prune values from domain
modifiedVariable := variables.Find(removal.VariableName)
if modifiedVariable.Empty {
modifiedVariable.Domain = modifiedVariable.Domain.Remove(removal.Value)
// fmt.Printf("Removed value %v from domain for variable %v. New Domain is: %v\n",
// removal.Value, removal.VariableName, variables.Find(removal.VariableName).Domain)
}
}
}
// ResetDomainRemovalEvaluation undo pruning on a variable's domain
func (variables *Variables[T]) ResetDomainRemovalEvaluation(domainRemovals DomainRemovals[T]) {
for _, removal := range domainRemovals {
// add back all pruned domain values
modifiedVariable := variables.Find(removal.VariableName)
if !modifiedVariable.Domain.Contains(removal.Value) {
modifiedVariable.Domain = append(modifiedVariable.Domain, removal.Value)
// fmt.Printf("Added value %v to domain for variable %v. New Domain is: %v\n",
// removal.Value, removal.VariableName, variables.Find(removal.VariableName).Domain)
}
}
}