mbt-gen 0.0.4 → 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/lib/mbt-gen.rb +2058 -1976
  3. data/lib/progress.rb +6 -0
  4. data/lib/solver-lib.rb +572 -513
  5. metadata +2 -2
data/lib/progress.rb CHANGED
@@ -25,6 +25,12 @@ class Progress
25
25
  end
26
26
  end
27
27
 
28
+ class VoidProgress < Progress
29
+ def initialize()
30
+ super("tmp.log")
31
+ end
32
+ end
33
+
28
34
  class ProgressBar < Progress
29
35
  def initialize(max, logfilename)
30
36
  super(logfilename)