/*****************************************************************************/ /*! *\file queryresult.h *\brief enumerated type for result of queries * * Author: Clark Barrett * * Created: Thu May 18 12:36:25 2006 * *
* * License to use, copy, modify, sell and/or distribute this software * and its documentation for any purpose is hereby granted without * royalty, subject to the terms and conditions defined in the \ref * LICENSE file provided with this distribution. * *
*/ /*****************************************************************************/ #ifndef _cvc3__include__queryresult_h_ #define _cvc3__include__queryresult_h_ namespace CVC3 { /*****************************************************************************/ /* * Type for result of queries. VALID and UNSATISFIABLE are treated as * equivalent, as are SATISFIABLE and INVALID. */ /*****************************************************************************/ typedef enum QueryResult { SATISFIABLE = 0, INVALID = 0, VALID = 1, UNSATISFIABLE = 1, ABORT, UNKNOWN } QueryResult; } #endif