-
Notifications
You must be signed in to change notification settings - Fork 0
/
State.cpp
61 lines (48 loc) · 992 Bytes
/
State.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
//
// Created by tomer on 1/10/19.
//
#include "State.h"
/*
template<class T>
State<T>::State(T *state, double weight, State<T> *pre) {
this->state=state;
this->weight=weight;
this->pre=pre;
}
template<class T>
State<T>::~State() {
delete state;
}
template<class T>
T *State<T>::getState() {
return this->state;
}
template<class T>
State<T> *State<T>::getPre() {
return this->pre;
}
template<class T>
void State<T>::setPre(State<T> *pre) {
this->pre=pre;
}
template<class T>
double State<T>::getWeight() {
return this->weight;
}
template<class T>
void State<T>::setWeight(double weight) {
this->weight=weight;
}
template<class T>
bool State<T>::operator==(State<T> &rightSide) {
return (*this->getState() == *rightSide.getState());
}
template<class T>
void State<T>::switchSolution() {
this->appear_inSolution = !this->appear_inSolution;
}
template<class T>
bool State<T>::appearInSolution() {
return this->appear_inSolution;
}
*/