| PPL C Language Interface
    1.2
    | 
Types and functions for grid generator systems. More...
#include <ppl_c_header.h>
| Related Functions | |
| (Note that these are not member functions.) | |
| Constructors, Assignment and Destructor | |
| int | ppl_new_Grid_Generator_System (ppl_Grid_Generator_System_t *pgs) | 
| Builds an empty system of grid generators and writes a handle to it at address pgs. | |
| int | ppl_new_Grid_Generator_System_from_Grid_Generator (ppl_Grid_Generator_System_t *pgs, ppl_const_Grid_Generator_t g) | 
| Builds the singleton grid generator system containing only a copy of generator g; writes a handle for the newly created system at addresspgs. | |
| int | ppl_new_Grid_Generator_System_from_Grid_Generator_System (ppl_Grid_Generator_System_t *pgs, ppl_const_Grid_Generator_System_t gs) | 
| Builds a grid generator system that is a copy of gs; writes a handle for the newly created system at addresspgs. | |
| int | ppl_assign_Grid_Generator_System_from_Grid_Generator_System (ppl_Grid_Generator_System_t dst, ppl_const_Grid_Generator_System_t src) | 
| Assigns a copy of the grid generator system srctodst. | |
| int | ppl_delete_Grid_Generator_System (ppl_const_Grid_Generator_System_t gs) | 
| Invalidates the handle gs:this makes sure the corresponding resources will eventually be released. | |
| Functions that Do Not Modify the Grid Generator System | |
| int | ppl_Grid_Generator_System_space_dimension (ppl_const_Grid_Generator_System_t gs, ppl_dimension_type *m) | 
| Writes to mthe dimension of the vector space enclosinggs. | |
| int | ppl_Grid_Generator_System_empty (ppl_const_Grid_Generator_System_t gs) | 
| Returns a positive integer if gscontains no generator; returns 0 otherwise. | |
| int | ppl_Grid_Generator_System_begin (ppl_const_Grid_Generator_System_t gs, ppl_Grid_Generator_System_const_iterator_t git) | 
| Assigns to gita const iterator "pointing" to the beginning of the grid generator systemgs. | |
| int | ppl_Grid_Generator_System_end (ppl_const_Grid_Generator_System_t gs, ppl_Grid_Generator_System_const_iterator_t git) | 
| Assigns to gita const iterator "pointing" past the end of the grid generator systemgs. | |
| int | ppl_Grid_Generator_System_OK (ppl_const_Grid_Generator_System_t gs) | 
| Returns a positive integer if gsis well formed, i.e., if it satisfies all its implementation invariants; returns 0 and perhaps makes some noise ifgsis broken. Useful for debugging purposes. | |
| Functions that May Modify the Grid Generator System | |
| int | ppl_Grid_Generator_System_clear (ppl_Grid_Generator_System_t gs) | 
| Removes all the generators from the grid generator system gsand sets its space dimension to 0. | |
| int | ppl_Grid_Generator_System_insert_Grid_Generator (ppl_Grid_Generator_System_t gs, ppl_const_Grid_Generator_t g) | 
| Inserts a copy of the grid generator gintogs; the space dimension is increased, if necessary. | |
| Input/Output Functions | |
| int | ppl_io_print_Grid_Generator_System (ppl_const_Grid_Generator_System_t x) | 
| Prints xtostdout. | |
| int | ppl_io_fprint_Grid_Generator_System (FILE *stream, ppl_const_Grid_Generator_System_t x) | 
| Prints xto the given outputstream. | |
| int | ppl_io_asprint_Grid_Generator_System (char **strp, ppl_const_Grid_Generator_System_t x) | 
| Prints xto a malloc-allocated string, a pointer to which is returned viastrp. | |
| int | ppl_Grid_Generator_System_ascii_dump (ppl_const_Grid_Generator_System_t x, FILE *stream) | 
| Dumps an ascii representation of xonstream. | |
| int | ppl_Grid_Generator_System_ascii_load (ppl_Grid_Generator_System_t x, FILE *stream) | 
| Loads an ascii representation of xfromstream. | |
Types and functions for grid generator systems.
The types and functions for grid generator systems provide an interface towards Grid_Generator_System.