Right now if you're making an executable you can either use defaultMain to get preset command line options, or you can write your own from scratch, but there's no way to do what bin/Main.hs does and augment the configParser with additional command line options.
This could be useful for writing a benchmark for a specific problem domain where you want all the normal configParser options available, plus some others for the problem domain.
PS: I'm incredibly excited about this project.
Right now if you're making an executable you can either use
defaultMainto get preset command line options, or you can write your own from scratch, but there's no way to do whatbin/Main.hsdoes and augment theconfigParserwith additional command line options.This could be useful for writing a benchmark for a specific problem domain where you want all the normal
configParseroptions available, plus some others for the problem domain.PS: I'm incredibly excited about this project.