Changeset 817
- Timestamp:
- 08/10/15 06:07:27 (9 months ago)
- Location:
- mystic/examples2
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
mystic/examples2/crypta.py
r802 r817 1 #!/usr/bin/env python 2 # 3 # Problem definition: 4 # Example in google/or-tools 5 # https://github.com/google/or-tools/blob/master/examples/python/crypta.py 6 # with Copyright 2010 Hakan Kjellerstrand hakank@bonetmail.com 7 # and disclamer as stated at the above reference link. 8 # 9 # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) 10 # Copyright (c) 1997-2015 California Institute of Technology. 11 # License: 3-clause BSD. The full license text is available at: 12 # - http://mmckerns.github.io/project/mystic/browser/mystic/LICENSE 1 13 """ 2 3 14 Cryptarithmetic puzzle in Google CP Solver. 4 15 -
mystic/examples2/crypto.py
r802 r817 1 #!/usr/bin/env python 2 # 3 # Problem definition: 4 # Example in google/or-tools 5 # https://github.com/google/or-tools/blob/master/examples/python/crypto.py 6 # with Copyright 2010 Hakan Kjellerstrand hakank@bonetmail.com 7 # and disclamer as stated at the above reference link. 8 # 9 # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) 10 # Copyright (c) 1997-2015 California Institute of Technology. 11 # License: 3-clause BSD. The full license text is available at: 12 # - http://mmckerns.github.io/project/mystic/browser/mystic/LICENSE 1 13 """ 2 3 14 Crypto problem in Google CP Solver. 4 15 -
mystic/examples2/eq10.py
r802 r817 1 #!/usr/bin/env python 2 # 3 # Problem definition: 4 # Example in google/or-tools 5 # https://github.com/google/or-tools/blob/master/examples/python/ex10.py 6 # with Copyright 2010 Hakan Kjellerstrand hakank@bonetmail.com 7 # and disclamer as stated at the above reference link. 8 # 9 # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) 10 # Copyright (c) 1997-2015 California Institute of Technology. 11 # License: 3-clause BSD. The full license text is available at: 12 # - http://mmckerns.github.io/project/mystic/browser/mystic/LICENSE 1 13 """ 2 14 Eq 10 in Google CP Solver. -
mystic/examples2/eq20.py
r802 r817 1 #!/usr/bin/env python 2 # 3 # Problem definition: 4 # Example in google/or-tools 5 # https://github.com/google/or-tools/blob/master/examples/python/ex20.py 6 # with Copyright 2010 Hakan Kjellerstrand hakank@bonetmail.com 7 # and disclamer as stated at the above reference link. 8 # 9 # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) 10 # Copyright (c) 1997-2015 California Institute of Technology. 11 # License: 3-clause BSD. The full license text is available at: 12 # - http://mmckerns.github.io/project/mystic/browser/mystic/LICENSE 1 13 """ 2 Eq 10 in Google CP Solver.14 Eq 20 in Google CP Solver. 3 15 4 16 Standard benchmark problem. -
mystic/examples2/olympic.py
r802 r817 1 #!/usr/bin/env python 2 # 3 # Problem definition: 4 # Example in google/or-tools 5 # https://github.com/google/or-tools/blob/master/examples/python/olympic.py 6 # with Copyright 2010 Hakan Kjellerstrand hakank@bonetmail.com 7 # and disclamer as stated at the above reference link. 8 # 9 # Author: Mike McKerns (mmckerns @caltech and @uqfoundation) 10 # Copyright (c) 1997-2015 California Institute of Technology. 11 # License: 3-clause BSD. The full license text is available at: 12 # - http://mmckerns.github.io/project/mystic/browser/mystic/LICENSE 1 13 """ 2 3 14 Olympic puzzle in Google CP Solver. 4 15
Note: See TracChangeset
for help on using the changeset viewer.