Skip to content

Commit

Permalink
[Fix] Remove commented code
Browse files Browse the repository at this point in the history
  • Loading branch information
kostobog committed Feb 13, 2024
1 parent c9cd5fc commit f242c40
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions src/main/java/cz/cvut/kbss/analysis/model/fta/CutSetExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -84,27 +84,4 @@ protected List<FaultEventScenario> processAndGateScenarios(List<List<FaultEventS
}
return andScenarios;
}
//
//
// public static void main(String[] args) {
// List<Integer> sizes = Stream.of(2,3).toList();
// List<Integer> inds = new ArrayList<>(sizes.size());
// sizes.forEach(s -> inds.add(0));
// int i = 0;
// while( i < inds.size()) {
// while (i < inds.size()) {
// int ii = inds.get(i) + 1;
// if (ii < sizes.get(i)) {
// inds.set(i, ii);
// i = 0;
// break;
// }
// inds.set(i, 0);
// i++;
// }
// System.out.println(inds);
// }
// System.out.println("END");
// }

}

0 comments on commit f242c40

Please sign in to comment.