Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated the page numbers and Figure numbers #485

Open
wants to merge 13 commits into
base: AIMA4e
Choose a base branch
from
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package aima.core.environment.map2d;

/**
* Artificial Intelligence A Modern Approach (4th Edition): Figure ??, page ??.
* Artificial Intelligence A Modern Approach (4th Edition): Figure 3.1, page 82.
* <br>
*
* A simplified road map of Romania.
*
* The initialization method is declared static. So it can also be used to
* initialize other specialized subclasses of {@link ExtendableMap2D} with road
* map data from Romania. Location names, road distances and directions have
* been extracted from Artificial Intelligence A Modern Approach (?? Edition),
* Figure ??, page ??. The straight-line distances to Bucharest have been taken
* from Artificial Intelligence A Modern Approach (?? Edition), Figure ??, page
* ??.
* been extracted from Artificial Intelligence A Modern Approach (4th Edition),
* Figure 3.1, page 82. The straight-line distances to Bucharest have been taken
* from Artificial Intelligence A Modern Approach (4th Edition), Figure 3.16, page
* 103.
*
* @author Ruediger Lunde
* @author Ciaran O'Reilly
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import static aima.core.environment.vacuum.VacuumEnvironment.Status.Dirty;

/**
* Artificial Intelligence A Modern Approach (4th Edition): Figure ??, page ??.
* Artificial Intelligence A Modern Approach (4th Edition): Figure 2.8, page 67.
* <br>
* <br>
*
Expand All @@ -21,9 +21,9 @@
* else if location = B then return Left
* </pre>
*
* Figure ?? The agent program for a simple reflex agent in the two-state vacuum
* Figure 2.8 The agent program for a simple reflex agent in the two-state vacuum
* environment. This program implements the action function tabulated in Figure
* ??.
* 2.3.
*
* @author Ciaran O'Reilly
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
import static aima.core.environment.vacuum.VacuumEnvironment.Status.Dirty;

/**
* Artificial Intelligence A Modern Approach (4th Edition): Figure ??, page ??.
* Artificial Intelligence A Modern Approach (4th Edition): Figure 2.3, page 56.
* <br>
* <br>
* Figure ?? Partial tabulation of a simple agent function for the
* vacuum-cleaner world shown in Figure ??.
* Figure 2.3 Partial tabulation of a simple agent function for the
* vacuum-cleaner world shown in Figure 2.2.
*
* @author Ciaran O'Reilly
*/
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aima.core.environment.wumpusworld;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The agent has five sensors, each of which gives a single bit of information:
* <ul>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import aima.core.util.SetOps;

/**
* Artificial Intelligence WWAction Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence WWAction Modern Approach (4th Edition): page 260.<br>
* <br>
*
* <pre>
Expand Down Expand Up @@ -311,4 +311,4 @@ public HybridWumpusAgent(int caveXandYDimensions, PLParser plparser) {
kb = new WumpusKnowledgeBase<WWAction>(caveXandYDimensions, plparser);
}

}
}
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aima.core.environment.wumpusworld;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 228.<br>
* <br>
* The <b>wumpus world</b> is a cave consisting of rooms connected by
* passageways. Rooms are labeled [x,y], for example [1,1] would indicate the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import java.util.Set;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 228.<br>
* <br>
* The <b>wumpus world</b> is a cave consisting of rooms connected by
* passageways. The rooms are always organized into a grid. See Figure 7.2 for
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aima.core.environment.wumpusworld.action;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The action Climb can be used to climb out of the cave, but only from square
* [1,1].
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import aima.core.environment.wumpusworld.AgentPosition;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The agent can move Forward.
*
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aima.core.environment.wumpusworld.action;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The action Grab can be used to pick up the gold if it is in the same square
* as the agent.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package aima.core.environment.wumpusworld.action;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The action Shoot can be used to fire an arrow in a straight line in the
* direction the agent is facing. The arrow continues until it either hits (and
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import aima.core.environment.wumpusworld.AgentPosition;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The agent can TurnLeft by 90 degrees.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import aima.core.environment.wumpusworld.AgentPosition;

/**
* Artificial Intelligence A Modern Approach (4th Edition): page ???.<br>
* Artificial Intelligence A Modern Approach (4th Edition): page 229.<br>
* <br>
* The agent can TurnRight by 90 degrees.
*
Expand Down