00001 /*************************************************************************** 00002 * Copyright (C) 2006 by Rick L. Vinyard, Jr. * 00003 * rvinyard@cs.nmsu.edu * 00004 * * 00005 * This file is part of the clipsmm library. * 00006 * * 00007 * The clipsmm library is free software; you can redistribute it and/or * 00008 * modify it under the terms of the GNU General Public License * 00009 * version 3 as published by the Free Software Foundation. * 00010 * * 00011 * The clipsmm library is distributed in the hope that it will be * 00012 * useful, but WITHOUT ANY WARRANTY; without even the implied warranty * 00013 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 00014 * General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU General Public License * 00017 * along with this software. If not see <http://www.gnu.org/licenses/>. * 00018 ***************************************************************************/ 00019 #ifndef CLIPSENUM_H 00020 #define CLIPSENUM_H 00021 00022 namespace CLIPS { 00023 00027 typedef enum SalienceEvaluation { 00028 SALIENCE_EVAL_WHEN_DEFINED, 00029 SALIENCE_EVAL_WHEN_ACTIVATED, 00030 SALIENCE_EVAL_EVERY_CYCLE, 00031 } SalienceEvaluation; 00032 00036 typedef enum ConflictResolution { 00037 CONFLICT_DEPTH_STRATEGY, 00038 CONFLICT_BREADTH_STRATEGY, 00039 CONFLICT_LEX_STRATEGY, 00040 CONFLICT_MEA_STRATEGY, 00041 CONFLICT_COMPLEXITY_STRATEGY, 00042 CONFLICT_SIMPLICITY_STRATEGY, 00043 CONFLICT_RANDOM_STRATEGY, 00044 CONFLICT_DEFAULT_STRATEGY=CONFLICT_DEPTH_STRATEGY, 00045 } ConflictResolution; 00046 00047 } 00048 00049 #endif