00001 // Expression Names -*- C++ -*- 00002 00003 // $Id: exprnames.cc 347 2008-02-06 15:20:01Z schilly $ 00004 // Copyright (C) 2001-2003 Hermann Schichl 00005 // 00006 // This file is part of the COCONUT API. This library 00007 // is free software; you can redistribute it and/or modify it under the 00008 // terms of the Library GNU General Public License as published by the 00009 // Free Software Foundation; either version 2, or (at your option) 00010 // any later version. 00011 00012 // This library is distributed in the hope that it will be useful, 00013 // but WITHOUT ANY WARRANTY; without even the implied warranty of 00014 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00015 // Library GNU General Public License for more details. 00016 00017 // As a special exception, you may use this file as part of a free software 00018 // library without restriction. Specifically, if other files instantiate 00019 // templates or use macros or inline functions from this file, or you compile 00020 // this file and link it with other files to produce an executable, this 00021 // file does not by itself cause the resulting executable to be covered by 00022 // the Library GNU General Public License. This exception does not however 00023 // invalidate any other reasons why the executable file might be covered by 00024 // the Library GNU General Public License. 00025 00028 #include <coconut_config.h> 00029 #include <stdlib.h> 00030 00031 namespace coco { 00032 00036 const char *expr_names[] = { 00037 "G", 00038 "C", 00039 "V", 00040 00041 "+", 00042 "mean", 00043 "*", 00044 "max", 00045 "min", 00046 "mon", 00047 "scprod", 00048 "norm", 00049 00050 "1/", 00051 "2", 00052 "sqrt", 00053 "abs", 00054 "^I", 00055 "exp", 00056 "log", 00057 "sin", 00058 "cos", 00059 "gauss", 00060 "poly", 00061 00062 "^", 00063 "/", 00064 "atan2", 00065 00066 "lin", 00067 "quad", 00068 00069 "re", 00070 "im", 00071 "arg", 00072 00073 "conj", 00074 00075 "lookup", 00076 "pwlin", 00077 "spline", 00078 "pwcl", 00079 "pwcr", 00080 00081 "in", 00082 "if", 00083 "&", 00084 "|", 00085 "!", 00086 "=>", 00087 "#", 00088 "#!=", 00089 "hist", 00090 "level", 00091 00092 "nbr", 00093 "nogood", 00094 00095 "E", 00096 "Int", 00097 00098 "det", 00099 "cond", 00100 "psd", 00101 "m*", 00102 "fem", 00103 00104 "cm*", 00105 "cfem", 00106 00107 "**UNDEFINED**", 00108 NULL 00109 }; 00110 00111 } // namespace coco