|
|
|
@ -72,6 +72,9 @@ bool compact; |
|
|
|
// error message
|
|
|
|
char error_message[MAX_ERR_STRING_LEN]; |
|
|
|
|
|
|
|
// details from numerical computation which may be queried
|
|
|
|
double last_unif; |
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// cudd manager
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
@ -254,6 +257,15 @@ JNIEXPORT jstring JNICALL Java_hybrid_PrismHybrid_PH_1GetErrorMessage(JNIEnv *en |
|
|
|
return env->NewStringUTF(error_message); |
|
|
|
} |
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// numerical computation detail queries
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
JNIEXPORT jdouble JNICALL Java_hybrid_PrismHybrid_PH_1GetLastUnif(JNIEnv *env, jclass cls) |
|
|
|
{ |
|
|
|
return last_unif; |
|
|
|
} |
|
|
|
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// tidy up
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
|