-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #55 from TimKam/54-refactoring
54 refactoring
- Loading branch information
Showing
8 changed files
with
27 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,10 @@ | ||
const Belief = require('./agent/Belief') | ||
const Desire = require('./agent/Desire') | ||
const Intentions = require('./agent/Intentions') | ||
const Plan = require('./agent/Plan') | ||
const Agent = require('./agent/Agent') | ||
const Environment = require('./environment/Environment') | ||
|
||
const JSson = { | ||
Belief, | ||
Desire, | ||
Intentions, | ||
Plan, | ||
Agent, | ||
Environment | ||
Belief: require('./agent/Belief'), | ||
Desire: require('./agent/Desire'), | ||
Intentions: require('./agent/Intentions'), | ||
Plan: require('./agent/Plan'), | ||
Agent: require('./agent/Agent'), | ||
Environment: require('./environment/Environment') | ||
} | ||
|
||
module.exports = JSson |