Skip to content

Commit

Permalink
MAX_AND_NODE_SIZE = 10
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasMolzberger committed Dec 2, 2018
1 parent 14d9a28 commit 06927bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/main/java/network/aika/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
*/
public class Converter {

public static int MAX_AND_NODE_SIZE = 6;
public static int MAX_AND_NODE_SIZE = 10;


public static Comparator<Synapse> SYNAPSE_COMP = (s1, s2) -> {
Expand Down
7 changes: 2 additions & 5 deletions src/test/java/network/aika/network/PositionRelationTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -280,16 +280,13 @@ public void testOptionalRelation() {
new Relation.Builder()
.setFrom(1)
.setTo(1)
.setRelation(new MultiRelation(
new Equals(END, BEGIN, true, true),
new LessThan(BEGIN, BEGIN, false, false, false, Integer.MAX_VALUE)
)),
.setRelation(new Equals(END, BEGIN, true, true)),
new Relation.Builder()
.setFrom(1)
.setTo(2)
.setRelation(new MultiRelation(
new Equals(END, BEGIN, true, true),
new LessThan(BEGIN, BEGIN, false, false, false, Integer.MAX_VALUE)
new LessThan(END, END, false, false, false, Integer.MAX_VALUE)
)),
new Relation.Builder()
.setFrom(0)
Expand Down

0 comments on commit 06927bd

Please sign in to comment.