You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
using v0.1.9 I ran java -jar motive.jar --type synth --synth.repeats 3 --synth.n 50 --synth.m 600 --synth.instances 0,5,10 twice. Both times the command ended with an exception
This is expected behavior (but poorly handled). It basically tries to create a graph that has 50 nodes and 600 links, after inserting 0, 5 or 10 instances of a 5 node/6 link subgraph. For the 5 instance case (where it goes wrong) this means it needs to start with a graph of 30 nodes and 570 links so that after insertion of the instances we get a 50/600 graph. A simple graph with 30 nodes cannot have more than 435 links, so it fails.
I'll try to insert a check on the inputs so this situation yields a friendlier error message. For now, try increasing the synth.n and synth.m parameters.
using v0.1.9 I ran
java -jar motive.jar --type synth --synth.repeats 3 --synth.n 50 --synth.m 600 --synth.instances 0,5,10
twice. Both times the command ended with an exceptionThe text was updated successfully, but these errors were encountered: