HOG2
PancakeInstances.h
Go to the documentation of this file.
1 //
2 // PancakeInstances.h
3 // hog2 glut
4 //
5 // Created by Nathan Sturtevant on 6/23/17.
6 // Copyright © 2017 University of Denver. All rights reserved.
7 //
8 
9 #ifndef PancakeInstances_h
10 #define PancakeInstances_h
11 
12 #include "PancakePuzzle.h"
13 
14 template <int N>
16 {
17  return false;
18 }
19 
20 template <>
21 bool GetPancakeInstance(PancakePuzzleState<16> &s, int instance);
22 template <>
23 bool GetPancakeInstance(PancakePuzzleState<20> &s, int instance);
24 template <>
25 bool GetPancakeInstance(PancakePuzzleState<24> &s, int instance);
26 template <>
27 bool GetPancakeInstance(PancakePuzzleState<28> &s, int instance);
28 
29 #endif /* PancakeInstances_h */
PancakePuzzle.h
PancakePuzzleState
Definition: PancakePuzzle.h:14
GetPancakeInstance
bool GetPancakeInstance(PancakePuzzleState< N > &s, int instance)
Definition: PancakeInstances.h:15