Implement matching using jheaps PairingHeap

This commit is contained in:
2022-02-18 16:09:23 -06:00
parent acff88475b
commit bf32a55e4b
5 changed files with 52 additions and 4 deletions

View File

@@ -16,6 +16,12 @@ public class UserInterface {
public static void main(String[] args) {
if(args.length != 0){
//These command line options are a big mess
//Really, I don't think command line tools are expected to work in this many different modes
//making cells, making plates, and matching are the sort of thing that UNIX philosophy would say
//should be three separate programs.
//There might be a way to do it with option parameters?
Options mainOptions = new Options();
Option makeCells = Option.builder("cells")
.longOpt("make-cells")