git-svn-id: https://stp-fast-prover.svn.sourceforge.net/svnroot/stp-fast-prover/trunk/stp@1585
e59a4935-1847-0410-ae03-
e826735625c1
// NB: The boolean value is always true!
bool BVTypeCheck(const ASTNode& n);
+ long getCurrentTime();
+
ASTVec FlattenKind(Kind k, const ASTVec &children);
// Checks recursively all the way down.
return true;
} //End of TypeCheck function
+ long getCurrentTime()
+ {
+ timeval t;
+ gettimeofday(&t, NULL);
+ return (1000 * t.tv_sec) + (t.tv_usec / 1000);
+ }
+
};//end of namespace