Assignment Search Framework
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Pages
goal_test_function.h
Go to the documentation of this file.
1 /*
2  * goal_test_function.h
3  *
4  * LICENSE HERE
5  *
6  * Created on: 2016-08-18
7  * Author: Rick Valenzano
8  */
9 
10 #ifndef GOALTESTFUNCTION_H_
11 #define GOALTESTFUNCTION_H_
12 
18 template<class state_t>
20 {
21 public:
26 
30  virtual ~GoalTestFunction();
31 
38  virtual bool isGoal(const state_t &state) const = 0;
39 };
40 
41 template<class state_t>
43 {
44 }
45 
46 template<class state_t>
48 {
49 }
50 
51 #endif /* GOALTESTFUNCTION_H_ */
virtual ~GoalTestFunction()
Definition: goal_test_function.h:47
Definition: goal_test_function.h:19
virtual bool isGoal(const state_t &state) const =0
GoalTestFunction()
Definition: goal_test_function.h:42