/**
* @param args
*/
public static void main(String[] args) {
EmbeddedReadOnlyGraphDatabase graphDB = new EmbeddedReadOnlyGraphDatabase(Config.get().neo4jDbPath);
FriendOfAFriendQueryBenchmark foafqb = new FriendOfAFriendQueryBenchmark(graphDB);
int cnt = 0;
System.out.println("done start benchmark");
for (int i = 0;i<4;i++){
for (int j = 1;j<10;j++){
int base = (int)Math.pow(10, i);
foafqb.coAuthorBenchmark(base*j);
}
}
System.out.println("done with benchmark");
}