Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ For simulation run the repast simphony and corresponding eclipse version has to
4. Check Groovy compiler version is higher than 3.0.x:
- Window -> Preferences -> Groovy compiler
5. **Note**: If `Surrogate issue UTF16 appears`
- Menu Window -> Preferences -> Java -> Mark occurences -> Untick
- Menu Window -> Preferences -> Java -> Editor -> Mark occurences -> Untick
6. **Install openjdk-11** from [here](https://jdk.java.net/archive/):
- Window -> Preferences -> Java -> Installed JREs -> Pick folder
- Window -> Preferences -> Java -> Compiler-> Java 11
Expand Down
2 changes: 1 addition & 1 deletion src/framework/agent/reasoning/TIBModel.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public TIBModel(Determinant belief, Determinant evaluation, Determinant norm, De
ParentDeterminant intention = new ParentDeterminant("intention", intentionWeight);
ParentDeterminant habits = new ParentDeterminant("habits", habitWeight);

ParentDeterminant attitude = new ParentDeterminant("attitude", affectWeight);
ParentDeterminant attitude = new ParentDeterminant("attitude", attitudeWeight);
ParentDeterminant socialFactors = new ParentDeterminant("social", socialWeight);
ParentDeterminant affect = new ParentDeterminant("affect", affectWeight);

Expand Down