Spot wants ^', not xor'.

* src/SpotWrapper.hh (SpotWrapper::SPOT_XOR): Declare.
* src/SpotWrapper.cc (SpotWrapper::SPOT_XOR): Define.
(SpotWrapper::translateFormula): Use SPOT_XOR.
This commit is contained in:
Alexandre Duret-Lutz 2003-07-10 08:26:23 +00:00
parent 79bed65843
commit bbba8ca966
3 changed files with 11 additions and 2 deletions

View file

@ -70,6 +70,7 @@ private:
static const char SPOT_AND[]; /* Symbols for */
static const char SPOT_OR[]; /* operators. */
static const char SPOT_XOR[];
};
@ -124,7 +125,7 @@ inline string SpotWrapper::commandLine
*
* ------------------------------------------------------------------------- */
{
return (string(" ") + input_filename
return (string(" ") + input_filename
+ " >" + string(command_line_arguments[4]));
}