#include "meshmorph.h"
#include <iostream>
#include <cassert>
#include <cmath>
#include "log.h"
#include "nice.h"
#include "energy.h"
#include "controls.h"
#include "container.h"
#include "refractory.h"
#include "virtual_disp.h"
#include "gain_schedule.h"
#include "vertex_schedule.h"
#include "octree_agent_face.h"
#include "intersecting_faces.h"
#include "octree_visitor_face.h"
Include dependency graph for meshmorph.cc:
Functions | |
int | main (int argc, char **argv) |
bool | checkIntSize (void) |
bool | distinguishable (double a, double b, double epsilon) |
bool | distinguishable (double a, double b) |
bool checkIntSize | ( | void | ) |
Determine if integers are 32 bit.
bool distinguishable | ( | double | a, | |
double | b | |||
) |
Determine if two floating-point precision numbers are equivalent in value within MY_DOUBLE_EPSILON.
[in] | a | First number. |
[in] | b | Second number. |
bool distinguishable | ( | double | a, | |
double | b, | |||
double | epsilon | |||
) |
Determine if two floating-point precision numbers are equivalent in value within epsilon.
[in] | a | First number. |
[in] | b | Second number. |
[in] | epsilon | The difference between the two input values must be greater than the fraction of the largest input value defined by epsilon. |
int main | ( | int | argc, | |
char ** | argv | |||
) |