Few more things
[apertium.git] / lttoolbox / lttoolbox / Node.C
blob7550c6f1a6fec57b496deafb441a215d076941bc
1 /*
2  * Copyright (C) 2005 Universitat d'Alacant / Universidad de Alicante
3  *
4  * This program is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU General Public License as
6  * published by the Free Software Foundation; either version 2 of the
7  * License, or (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
17  * 02111-1307, USA.
18  */
19 #include <lttoolbox/Node.H>
21 Node::Node()
25 Node::~Node()
27   destroy();
30 Node::Node(Node const &n)
32   copy(n);  
35 Node &
36 Node::operator =(Node const &n)
38   if(this != &n)
39   {
40     destroy();
41     copy(n);
42   }
43   return *this; 
46 void
47 Node::copy(Node const &n)
49   transitions = n.transitions;  
52 void
53 Node::destroy()
57 void
58 Node::addTransition(unsigned short const i, unsigned short const o, Node * const d)
60   Dest &aux = transitions[i];
61   aux.size++;
62   ushort *out_tag = new ushort[aux.size];
63   Node **dest = new Node*[aux.size];
65   for(int i = 0; i<aux.size-1; i++)
66   {
67     out_tag[i] = aux.out_tag[i];
68     dest[i] = aux.dest[i];
69   }
70   
71   if(aux.size > 1)
72   {
73     delete aux.out_tag;
74     delete aux.dest;
75   }
77   out_tag[aux.size-1] = o;
78   dest[aux.size-1] = d;
79   aux.out_tag = out_tag;
80   aux.dest = dest;