blob: 9f6244a5aacac4fb47702c062e9105bb06afa00e (
plain)
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
|
/**
* \brief Solve an instance of the "Variable Placement with Separation
* Constraints" problem.
*
* Authors:
* Tim Dwyer <tgdwyer@gmail.com>
*
* Copyright (C) 2005 Authors
*
* Released under GNU LGPL. Read the file 'COPYING' for more information.
*/
#ifndef SEEN_REMOVEOVERLAP_SOLVE_VPSC_H
#define SEEN_REMOVEOVERLAP_SOLVE_VPSC_H
#include <vector>
class Variable;
class Constraint;
class Blocks;
/**
* Variable Placement with Separation Constraints problem instance
*/
class VPSC {
public:
virtual void satisfy();
virtual void solve();
VPSC(const unsigned n, Variable *vs[], const unsigned m, Constraint *cs[]);
virtual ~VPSC();
Constraint** getConstraints() { return cs; }
Variable** getVariables() { return vs; }
protected:
Blocks *bs;
Constraint **cs;
unsigned m;
Variable **vs;
void printBlocks();
private:
void refine();
bool constraintGraphIsCyclic(const unsigned n, Variable *vs[]);
bool blockGraphIsCyclic();
};
class IncVPSC : public VPSC {
public:
unsigned splitCnt;
void satisfy();
void solve();
void moveBlocks();
void splitBlocks();
IncVPSC(const unsigned n, Variable *vs[], const unsigned m, Constraint *cs[]);
private:
typedef std::vector<Constraint*> ConstraintList;
ConstraintList inactive;
Constraint* mostViolated(ConstraintList &l);
};
#endif // SEEN_REMOVEOVERLAP_SOLVE_VPSC_H
|