The source code and dockerfile for the GSW2024 AI Lab.
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

33 lines
668 B

4 weeks ago
  1. #! /bin/sh
  2. #
  3. # Check Header Load/Store for BDD/ADD/CNFs:
  4. # Load Header
  5. # Write Information on Standard Output
  6. #
  7. EXE=@EXEEXT@
  8. srcdir=@top_srcdir@
  9. where=${srcdir}/dddmp/exp
  10. exitval=0
  11. echo "---------------------------------------------------------------------------"
  12. echo "--------------------- TESTING Load and Write Header -----------------------"
  13. echo "---------------------------------------------------------------------------"
  14. ../testdddmp$EXE << END
  15. mi
  16. 50
  17. hlb
  18. ${where}/4.bdd
  19. hw
  20. hlb
  21. ${where}/0.add
  22. hw
  23. hlc
  24. ${where}/4.cnf
  25. hw
  26. mq
  27. quit
  28. END
  29. test $? != 1 && exitval=1
  30. echo "-------------------------------- ... END ----------------------------------"
  31. exit $exitval