File: solve_VPSC.h

package info (click to toggle)
tulip 4.8.0dfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 179,264 kB
  • ctags: 64,517
  • sloc: cpp: 600,444; ansic: 36,311; makefile: 22,136; python: 1,304; sh: 946; yacc: 522; xml: 337; pascal: 157; php: 66; lex: 55
file content (77 lines) | stat: -rw-r--r-- 1,889 bytes parent folder | download
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
/**
 * \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.
 */

//
// TODO: Really, we should have three classes: VPSC, IncrementalVPSC and
// StaticVPSC, where the latter two inherit from VPSC.  StaticVPSC would be
// the equivalent of what is currently VPSC.
// Also, a lot of the code specific to one or other of these concrete
// implementations should be moved from Block and Blocks: e.g. mergeLeft etc.
//
#ifndef SEEN_REMOVEOVERLAP_SOLVE_VPSC_H
#define SEEN_REMOVEOVERLAP_SOLVE_VPSC_H

#include <vector>

namespace vpsc {
class Variable;
class Constraint;
class Blocks;

/**
 * Variable Placement with Separation Constraints problem instance
 */
class Solver {
public:
  virtual void satisfy();
  virtual void solve();

  Solver(const unsigned n, Variable* const vs[], const unsigned m, Constraint *cs[]);
  virtual ~Solver();
  Constraint** getConstraints(unsigned &m) {
    m=this->m;
    return cs;
  }
  const Variable* const * getVariables(unsigned &n) {
    n=this->n;
    return vs;
  }
protected:
  Blocks *bs;
  unsigned m;
  Constraint **cs;
  unsigned n;
  const Variable* const *vs;
  void printBlocks();
private:
  void refine();
  bool constraintGraphIsCyclic(const unsigned n, Variable* const vs[]);
#ifndef NDEBUG
  bool blockGraphIsCyclic();
#endif
};

class IncSolver : public Solver {
public:
  unsigned splitCnt;
  void satisfy();
  void solve();
  void moveBlocks();
  void splitBlocks();
  IncSolver(const unsigned n, Variable* const vs[], const unsigned m, Constraint *cs[]);
private:
  typedef std::vector<Constraint*> ConstraintList;
  ConstraintList inactive;
  Constraint* mostViolated(ConstraintList &l);
};
}
#endif // SEEN_REMOVEOVERLAP_SOLVE_VPSC_H