/Users/jamian/Desktop/qecode/StrategyNode.cc

Go to the documentation of this file.
00001 /****   , [ StrategyNode.cc ], 
00002 Copyright (c) 2008 Universite d'Orleans - Jeremie Vautard 
00003 
00004 Permission is hereby granted, free of charge, to any person obtaining a copy
00005 of this software and associated documentation files (the "Software"), to deal
00006 in the Software without restriction, including without limitation the rights
00007 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
00008 copies of the Software, and to permit persons to whom the Software is
00009 furnished to do so, subject to the following conditions:
00010 
00011 The above copyright notice and this permission notice shall be included in
00012 all copies or substantial portions of the Software.
00013 
00014 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
00015 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
00016 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
00017 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
00018 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
00019 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
00020 THE SOFTWARE.
00021  *************************************************************************/
00022 
00023 #include "StrategyNode.hh"
00024 
00025 StrategyNode::StrategyNode() {
00026     type=0;
00027     quantifier=true;
00028     Vmin=-1;
00029     Vmax=-1;
00030     scope=-1;
00031 }
00032 
00033 StrategyNode::StrategyNode(int typ,bool qt,int min, int max, int sco) {
00034     type=typ;
00035     quantifier=qt;
00036     Vmin=min;
00037     Vmax=max;
00038     scope=sco;
00039 }
00040 
00041 /*
00042 StrategyNode::StrategyNode(const StrategyNode& st) {
00043     cout<<"Strategynode copy constructor"<<endl;
00044     type=st.type;
00045     quantifier=st.quantifier;
00046     Vmin=st.Vmin;
00047     Vmax=st.Vmax;
00048     if (type == 2) {
00049         valeurs=new int[Vmax-Vmin];
00050         for (int i=0;i<Vmax-Vmin;i++)
00051             valeurs[i]=st.valeurs[i];
00052     }
00053 }
00054 */
00055 
00056 StrategyNode::~StrategyNode() {
00057 /*    if (type == 2) {
00058         cout<<"delete valeurs"<<endl;
00059         delete [] valeurs;
00060     }*/
00061 }
00062 

Generated on Tue Jun 10 18:31:30 2008 for qecode by  doxygen 1.5.2