-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathPerfDetermStructGen.java
72 lines (53 loc) · 1.81 KB
/
PerfDetermStructGen.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
import java.util.ArrayList;
import java.util.List;
import org.openscience.cdk.structgen.IStructureGenerationListener;
import org.openscience.cdk.structgen.deterministic.GENMDeterministicGenerator;
public class PerfDetermStructGen {
GENMDeterministicGenerator gdg;
StructureGenerationCounterListener myListener;
public PerfDetermStructGen(String formula) throws Exception {
gdg = new GENMDeterministicGenerator("" + formula,"");
System.out.println("MF: " + formula);
// myListener = new StructureGenerationCounterListener();
// gdg.addListener(myListener);
}
public void run() throws Exception {
long startTime = System.currentTimeMillis();
gdg.generate();
long endTime = System.currentTimeMillis();
System.out.println("Time consumed (ms): " + (endTime - startTime));
System.out.println("Structures found: " + gdg.getNumberOfStructures());
System.out.println("struct/s: " +
(int)(1000.0*(double)gdg.getNumberOfStructures()/(endTime - startTime))
);
}
public static void main(String[] args) throws Exception {
PerfDetermStructGen test = new PerfDetermStructGen(args[0]);
test.run();
// System.in.read();
}
class MyStructureGenerationListener implements IStructureGenerationListener {
private List structures;
public MyStructureGenerationListener() {
structures = new ArrayList();
}
public void stateChanged(List list) throws Exception {
structures.addAll(list);
}
public List getStructures() {
return structures;
}
}
class StructureGenerationCounterListener implements IStructureGenerationListener {
private int count;
public StructureGenerationCounterListener() {
count = 0;
}
public void stateChanged(List list) throws Exception {
count += list.size();
}
public int getCount() {
return count;
}
}
}