-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbnb.py
49 lines (47 loc) · 1.29 KB
/
bnb.py
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
import pybnb
class Simple(pybnb.Problem):
def __init__(self):
self._xL, self._xU = 0, 1
#
# required methods
#
def sense(self):
return pybnb.minimize
def objective(self):
return round(self._xU-self._xL,3)
def bound(self):
return -(self._xU - self._xL)**2
def save_state(self, node):
node.state = (self._xL, self._xU)
def load_state(self, node):
(self._xL, self._xU) = node.state
def branch(self):
xL, xU = self._xL, self._xU
xM = 0.5 * (xL + xU)
child = pybnb.Node()
child.state = (xL, xM)
yield child
child = pybnb.Node()
child.state = (xM, xU)
yield child
#
# optional methods
#
def notify_solve_begins(self,
comm,
worker_comm,
convergence_checker):
pass
def notify_new_best_node(self,
node,
current):
pass
def notify_solve_finished(self,
comm,
worker_comm,
results):
pass
problem = Simple()
solver = pybnb.Solver()
results = solver.solve(problem,
absolute_gap=1e-8)