-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathDummyLS.inc
48 lines (39 loc) · 1.11 KB
/
DummyLS.inc
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
{
Copyright (c) Peter Karpov 2010 - 2018.
Usage of the works is permitted provided that this instrument is retained with
the works, so that any entity that uses the works is notified of this instrument.
DISCLAIMER: THE WORKS ARE WITHOUT WARRANTY.
}
// Apply a Move to the Solution
procedure PerformMove(
var Solution : TSolution;
const Move : TMove);
overload;
begin
Assert(False);
end;
// Apply a Move to the Solution, save Undo
procedure PerformMove(
var Solution : TSolution;
var Undo : TMoveUndo;
const Move : TMove);
overload;
begin
Assert(False);
end;
// Undo the last move applied to Solution
procedure UndoMove(
var Solution : TSolution;
const Undo : TMoveUndo);
begin
Assert(False);
end;
// Make a MoveList for the Local Search. Level determines the neighborhood size,
// with 1 being the smallest.
procedure MakeLSMoveList(
var MoveList : TMoveList;
const Solution : TSolution;
Level : Integer);
begin
Assert(False, ErrorUndefined);
end;