You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
898 B

  1. diff -r bde167bca3cd Bip/Main_bip.cc
  2. --- a/Bip/Main_bip.cc Thu Sep 14 01:44:08 2017 -0700
  3. +++ b/Bip/Main_bip.cc Thu Aug 08 15:02:00 2019 +0200
  4. @@ -508,8 +508,8 @@
  5. void writeCex(Out& out, NetlistRef N, const Cex& cex, uint orig_num_pis)
  6. {
  7. Vec<Pair<int,GLit> > ffs, pis;
  8. - For_Gatetype(N, gate_Flop, w) ffs.push(tuple(attr_Flop(w).number, w));
  9. - For_Gatetype(N, gate_PI , w) pis.push(tuple(attr_PI (w).number, w));
  10. + For_Gatetype(N, gate_Flop, w) ffs.push(::tuple(attr_Flop(w).number, w));
  11. + For_Gatetype(N, gate_PI , w) pis.push(::tuple(attr_PI (w).number, w));
  12. sort(ffs);
  13. sort(pis);
  14. diff -r bde167bca3cd MetaSat/MiniSat2/System.cc
  15. --- a/MetaSat/MiniSat2/System.cc Thu Sep 14 01:44:08 2017 -0700
  16. +++ b/MetaSat/MiniSat2/System.cc Thu Aug 08 15:02:00 2019 +0200
  17. @@ -20,6 +20,7 @@
  18. #include <signal.h>
  19. #include <stdio.h>
  20. +#include <stdlib.h>
  21. #include "System.hh"