We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dce0e2 commit 110bcf8Copy full SHA for 110bcf8
src/aima/search/framework/Problem.java
@@ -14,15 +14,18 @@
14
15
public class Problem {
16
17
- Object initialState;
+ protected Object initialState;
18
19
- SuccessorFunction successorFunction;
+ protected SuccessorFunction successorFunction;
20
21
- GoalTest goalTest;
+ protected GoalTest goalTest;
22
23
- StepCostFunction stepCostFunction;
+ protected StepCostFunction stepCostFunction;
24
25
- HeuristicFunction heuristicFunction;
+ protected HeuristicFunction heuristicFunction;
26
+
27
+ protected Problem() {
28
+ }
29
30
public Problem(Object initialState, SuccessorFunction successorFunction,
31
GoalTest goalTest) {
0 commit comments