Commit 32312c43 by Alan Mishchenko

Avoid command name collision.

parent 4cbc97a4
...@@ -50,7 +50,7 @@ extern "C" { ...@@ -50,7 +50,7 @@ extern "C" {
void Glucose_Init(Abc_Frame_t *pAbc) void Glucose_Init(Abc_Frame_t *pAbc)
{ {
Cmd_CommandAdd( pAbc, "ABC9", "&glucose", Abc_CommandGlucose, 0 ); Cmd_CommandAdd( pAbc, "ABC9", "&gluco", Abc_CommandGlucose, 0 );
} }
void Glucose_End( Abc_Frame_t * pAbc ) void Glucose_End( Abc_Frame_t * pAbc )
...@@ -127,7 +127,7 @@ int Abc_CommandGlucose( Abc_Frame_t * pAbc, int argc, char ** argv ) ...@@ -127,7 +127,7 @@ int Abc_CommandGlucose( Abc_Frame_t * pAbc, int argc, char ** argv )
return 0; return 0;
usage: usage:
Abc_Print( -2, "usage: &glucose [-C num] [-pvh] <file.cnf>\n" ); Abc_Print( -2, "usage: &gluco [-C num] [-pvh] <file.cnf>\n" );
Abc_Print( -2, "\t run glucose\n" ); Abc_Print( -2, "\t run glucose\n" );
Abc_Print( -2, "\t-C num : conflict limit [default = %d]\n", nConfls ); Abc_Print( -2, "\t-C num : conflict limit [default = %d]\n", nConfls );
Abc_Print( -2, "\t-p : enable preprocessing [default = %d]\n",pre); Abc_Print( -2, "\t-p : enable preprocessing [default = %d]\n",pre);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment