Skip to content

Commit 2016335

Browse files
committed
Added check connector coherence in DEL synthon files.
1 parent 7b9ba03 commit 2016335

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/main/java/com/actelion/research/util/ArrayUtils.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,11 @@ public static void set(boolean [] a, boolean v){
432432
a[i]=v;
433433
}
434434
}
435+
public static void set(int [] a, int v){
436+
for (int i = 0; i < a.length; i++) {
437+
a[i]=v;
438+
}
439+
}
435440

436441
public final static boolean isOverlap(int[] a1, int[] a2) {
437442
boolean ov = false;

0 commit comments

Comments
 (0)