Types and functions for iterating on constraint systems. More...
#include <ppl_c_header.h>
Related Functions | |
(Note that these are not member functions.) | |
Constructors, Assignment and Destructor | |
| int | ppl_new_Constraint_System_const_iterator (ppl_Constraint_System_const_iterator_t *pcit) |
Builds a new `const iterator' and writes a handle to it at address pcit. | |
| int | ppl_new_Constraint_System_const_iterator_from_Constraint_System_const_iterator (ppl_Constraint_System_const_iterator_t *pcit, ppl_const_Constraint_System_const_iterator_t cit) |
Builds a const iterator that is a copy of cit; writes a handle for the newly created const iterator at address pcit. | |
| int | ppl_assign_Constraint_System_const_iterator_from_Constraint_System_const_iterator (ppl_Constraint_System_const_iterator_t dst, ppl_const_Constraint_System_const_iterator_t src) |
Assigns a copy of the const iterator src to dst. | |
| int | ppl_delete_Constraint_System_const_iterator (ppl_const_Constraint_System_const_iterator_t cit) |
Invalidates the handle cit: this makes sure the corresponding resources will eventually be released. | |
Dereferencing, Incrementing and Equality Testing | |
| int | ppl_Constraint_System_const_iterator_dereference (ppl_const_Constraint_System_const_iterator_t cit, ppl_const_Constraint_t *pc) |
Dereference cit writing a const handle to the resulting constraint at address pc. | |
| int | ppl_Constraint_System_const_iterator_increment (ppl_Constraint_System_const_iterator_t cit) |
Increment cit so that it "points" to the next constraint. | |
| int | ppl_Constraint_System_const_iterator_equal_test (ppl_const_Constraint_System_const_iterator_t x, ppl_const_Constraint_System_const_iterator_t y) |
Returns a positive integer if the iterators corresponding to x and y are equal; returns 0 if they are different. | |
Types and functions for iterating on constraint systems.
The types and functions for constraint systems iterators provide read-only access to the elements of a constraint system by interfacing Constraint_System::const_iterator.
| int ppl_assign_Constraint_System_const_iterator_from_Constraint_System_const_iterator | ( | ppl_Constraint_System_const_iterator_t | dst, | |
| ppl_const_Constraint_System_const_iterator_t | src | |||
| ) | [related] |
Assigns a copy of the const iterator src to dst.
Definition at line 895 of file ppl_c_implementation_common.cc.
| int ppl_Constraint_System_const_iterator_dereference | ( | ppl_const_Constraint_System_const_iterator_t | cit, | |
| ppl_const_Constraint_t * | pc | |||
| ) | [related] |
Dereference cit writing a const handle to the resulting constraint at address pc.
Definition at line 926 of file ppl_c_implementation_common.cc.
| int ppl_Constraint_System_const_iterator_equal_test | ( | ppl_const_Constraint_System_const_iterator_t | x, | |
| ppl_const_Constraint_System_const_iterator_t | y | |||
| ) | [related] |
Returns a positive integer if the iterators corresponding to x and y are equal; returns 0 if they are different.
Definition at line 946 of file ppl_c_implementation_common.cc.
| int ppl_Constraint_System_const_iterator_increment | ( | ppl_Constraint_System_const_iterator_t | cit | ) | [related] |
Increment cit so that it "points" to the next constraint.
Definition at line 937 of file ppl_c_implementation_common.cc.
| int ppl_delete_Constraint_System_const_iterator | ( | ppl_const_Constraint_System_const_iterator_t | cit | ) | [related] |
Invalidates the handle cit: this makes sure the corresponding resources will eventually be released.
Definition at line 886 of file ppl_c_implementation_common.cc.
| int ppl_new_Constraint_System_const_iterator | ( | ppl_Constraint_System_const_iterator_t * | pcit | ) | [related] |
Builds a new `const iterator' and writes a handle to it at address pcit.
Definition at line 869 of file ppl_c_implementation_common.cc.
| int ppl_new_Constraint_System_const_iterator_from_Constraint_System_const_iterator | ( | ppl_Constraint_System_const_iterator_t * | pcit, | |
| ppl_const_Constraint_System_const_iterator_t | cit | |||
| ) | [related] |
Builds a const iterator that is a copy of cit; writes a handle for the newly created const iterator at address pcit.
Definition at line 877 of file ppl_c_implementation_common.cc.
1.6.3