00001 #ifndef AFL_UTIL_AFLUTIL_H 00002 #define AFL_UTIL_AFLUTIL_H 00003 00004 #include "geom.h" 00005 #include "io.h" 00006 #include "strings.h" 00007 #include "maths.h" 00008 00009 namespace afl 00010 { 00011 namespace util 00012 { 00019 void copy( const Value& from, Value& to); 00020 00027 void copy( const ddf::Node& from, Value& to); 00028 00035 void copy( const Value& from, ddf::Node& to); 00036 00043 void copy( const Derivative& from, Derivative& to); 00044 00051 void copy( const ddf::Node& from, Derivative& to); 00052 00059 void copy( const Derivative& from, ddf::Node& to); 00060 00065 void zero( Value& v ); 00066 00071 void zero( Derivative& d ); 00072 } 00073 } 00074 00075 #endif