00001 /*************************************************************************** 00002 * clipsmm C++ wrapper for the CLIPS c library * 00003 * Copyright (C) 2006 by Rick L. Vinyard, Jr. * 00004 * rvinyard@cs.nmsu.edu * 00005 * * 00006 * This program is free software; you can redistribute it and/or modify * 00007 * it under the terms of version 2 of the GNU General Public License as * 00008 * published by the Free Software Foundation. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU Lesser General Public * 00016 * License along with this library; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA * 00019 ***************************************************************************/ 00020 #ifndef CLIPSENUM_H 00021 #define CLIPSENUM_H 00022 00023 namespace CLIPS { 00024 00028 typedef enum SalienceEvaluation { 00029 SALIENCE_EVAL_WHEN_DEFINED, 00030 SALIENCE_EVAL_WHEN_ACTIVATED, 00031 SALIENCE_EVAL_EVERY_CYCLE, 00032 } SalienceEvaluation; 00033 00037 typedef enum ConflictResolution { 00038 CONFLICT_DEPTH_STRATEGY, 00039 CONFLICT_BREADTH_STRATEGY, 00040 CONFLICT_LEX_STRATEGY, 00041 CONFLICT_MEA_STRATEGY, 00042 CONFLICT_COMPLEXITY_STRATEGY, 00043 CONFLICT_SIMPLICITY_STRATEGY, 00044 CONFLICT_RANDOM_STRATEGY, 00045 CONFLICT_DEFAULT_STRATEGY=CONFLICT_DEPTH_STRATEGY, 00046 } ConflictResolution; 00047 00048 } 00049 00050 #endif