|
Graphviz 14.1.3~dev.20260207.0611
|
#include <stdbool.h>Go to the source code of this file.
Data Structures | |
| struct | pointf_s |
| struct | boxf |
Typedefs | |
| typedef struct Variable | Variable |
| Bridge for C programs to access solve_VPSC (which is in C++) | |
| typedef struct Constraint | Constraint |
| typedef struct VPSC | VPSC |
| typedef struct pointf_s | pointf |
| typedef struct IncVPSC | IncVPSC |
Functions | |
| Variable * | newVariable (int id, double desiredPos, double weight) |
| Bridge for C programs to access solve_VPSC (which is in C++) | |
| void | setVariableDesiredPos (Variable *, double desiredPos) |
| double | getVariablePos (const Variable *) |
| Constraint * | newConstraint (Variable *left, Variable *right, double gap) |
| void | deleteVPSC (VPSC *) |
| void | deleteConstraint (Constraint *) |
| void | deleteVariable (Variable *) |
| Constraint ** | newConstraints (int m) |
| void | deleteConstraints (int m, Constraint **) |
| void | remapInConstraints (Variable *u, Variable *v, double dgap) |
| void | remapOutConstraints (Variable *u, Variable *v, double dgap) |
| int | genXConstraints (int n, boxf[], Variable **vs, Constraint ***cs, bool transitiveClosure) |
| int | genYConstraints (int n, boxf[], Variable **vs, Constraint ***cs) |
| void | satisfyVPSC (VPSC *) |
| void | solveVPSC (VPSC *) |
| VPSC * | newIncVPSC (int n, Variable *vs[], int m, Constraint *cs[]) |
| typedef struct Constraint Constraint |
Definition at line 29 of file csolve_VPSC.h.
Definition at line 51 of file csolve_VPSC.h.
Authors: Tim Dwyer tgdwy.nosp@m.er@g.nosp@m.mail..nosp@m.com
Copyright (C) 2005 Authors
This version is released under the CPL (Common Public License) with the Graphviz distribution. A version is also available under the LGPL as part of the Adaptagrams project: https://github.com/mjwybrow/adaptagrams.
If you make improvements or bug fixes to this code it would be much appreciated if you could also contribute those changes back to the Adaptagrams repository.
Definition at line 24 of file csolve_VPSC.h.
Definition at line 32 of file csolve_VPSC.h.
| void deleteConstraint | ( | Constraint * | c | ) |
Definition at line 66 of file csolve_VPSC.cpp.
| void deleteConstraints | ( | int | m, |
| Constraint ** | cs | ||
| ) |
Definition at line 60 of file csolve_VPSC.cpp.
| void deleteVariable | ( | Variable * | v | ) |
Definition at line 69 of file csolve_VPSC.cpp.
| void deleteVPSC | ( | VPSC * | vpsc | ) |
Definition at line 80 of file csolve_VPSC.cpp.
| int genXConstraints | ( | int | n, |
| boxf | [], | ||
| Variable ** | vs, | ||
| Constraint *** | cs, | ||
| bool | transitiveClosure | ||
| ) |
| int genYConstraints | ( | int | n, |
| boxf | [], | ||
| Variable ** | vs, | ||
| Constraint *** | cs | ||
| ) |
| double getVariablePos | ( | const Variable * | v | ) |
Definition at line 90 of file csolve_VPSC.cpp.
References Variable::position().
| Constraint * newConstraint | ( | Variable * | left, |
| Variable * | right, | ||
| double | gap | ||
| ) |
Definition at line 32 of file csolve_VPSC.cpp.
| Constraint ** newConstraints | ( | int | m | ) |
Definition at line 57 of file csolve_VPSC.cpp.
| VPSC * newIncVPSC | ( | int | n, |
| Variable * | vs[], | ||
| int | m, | ||
| Constraint * | cs[] | ||
| ) |
Definition at line 35 of file csolve_VPSC.cpp.
| Variable * newVariable | ( | int | id, |
| double | desiredPos, | ||
| double | weight | ||
| ) |
Authors: Tim Dwyer tgdwy.nosp@m.er@g.nosp@m.mail..nosp@m.com
Copyright (C) 2005 Authors
This version is released under the CPL (Common Public License) with the Graphviz distribution. A version is also available under the LGPL as part of the Adaptagrams project: https://github.com/mjwybrow/adaptagrams.
If you make improvements or bug fixes to this code it would be much appreciated if you could also contribute those changes back to the Adaptagrams repository.
Definition at line 29 of file csolve_VPSC.cpp.
Definition at line 93 of file csolve_VPSC.cpp.
References Variable::in.
Definition at line 101 of file csolve_VPSC.cpp.
References Variable::out.
| void satisfyVPSC | ( | VPSC * | vpsc | ) |
Definition at line 72 of file csolve_VPSC.cpp.
References VPSC::satisfy().
| void setVariableDesiredPos | ( | Variable * | v, |
| double | desiredPos | ||
| ) |
Definition at line 87 of file csolve_VPSC.cpp.
References Variable::desiredPosition.
| void solveVPSC | ( | VPSC * | vpsc | ) |
Definition at line 84 of file csolve_VPSC.cpp.
References VPSC::solve().