-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathintvar.go
142 lines (119 loc) · 3.13 KB
/
intvar.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
// Copyright 2021 Irfan Sharif.
//
// 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 solver
import (
"fmt"
"github.com/irfansharif/solver/internal/pb"
)
// IntVar is an integer variable. It's typically constructed using a domain and
// is used as part of a model's constraints/objectives. When solving a model,
// the variable's integer value is decided on.
type IntVar interface {
// Stringer provides a printable format representation for the int var.
fmt.Stringer
name() string
index() int32
domain() Domain
}
// Literal is a boolean variable. It's represented using an IntVar with a fixed
// domain [0, 1].
type Literal interface {
IntVar
// Not returns the negated form of literal. It uses a more efficient encoding
// than two literals with a model constraint xor-ing them together.
Not() Literal
// isNegated returns true if the literal is negated.
isNegated() bool
}
type intVar struct {
pb *pb.IntegerVariableProto
idx int32
d Domain
isLiteral, isConst bool
}
var _ IntVar = &intVar{}
var _ Literal = &intVar{}
func newIntVar(d Domain, idx int32, isLiteral, isConst bool, name string) *intVar {
return &intVar{
pb: &pb.IntegerVariableProto{
Name: name,
Domain: d.list(0),
},
idx: idx,
d: d,
isLiteral: isLiteral,
isConst: isConst,
}
}
// String is part of IntVar interface.
func (i *intVar) String() string {
var domainStr string
if i.isLiteral {
domainStr = ""
} else if i.isConst {
domainStr = fmt.Sprintf(" == %d", i.d.list(0)[0])
} else {
domainStr = fmt.Sprintf(" in %s", i.d.String())
}
return fmt.Sprintf("%s%s", i.name(), domainStr)
}
// name is part of the IntVar interface.
func (i *intVar) name() string {
name := i.pb.GetName()
if name == "" {
name = "<unnamed>"
}
return name
}
// index is part of the IntVar interface.
func (i *intVar) index() int32 {
return i.idx
}
func (i *intVar) isNegated() bool {
return i.idx < 0
}
func (i *intVar) domain() Domain {
return i.d
}
// Not is part of the Literal interface.
func (i *intVar) Not() Literal {
return &intVar{
pb: &pb.IntegerVariableProto{
Name: fmt.Sprintf("~%s", i.name()),
Domain: i.d.list(0),
},
idx: -i.idx - 1,
d: i.d,
}
}
// AsIntVars is a convenience function to convert a slice of Literals to
// IntVars.
func AsIntVars(literals []Literal) []IntVar {
var res []IntVar
for _, l := range literals {
res = append(res, l)
}
return res
}
type intVarList []IntVar
func (is intVarList) indexes() []int32 {
var indexes []int32
for _, iv := range is {
indexes = append(indexes, iv.index())
}
return indexes
}
func asIntVars(literals []Literal) intVarList {
return AsIntVars(literals)
}