Changeset 817


Ignore:
Timestamp:
08/10/15 06:07:27 (9 months ago)
Author:
mmckerns
Message:

add ortools example least_square; copywright header for ortools examples

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 
    113""" 
    2  
    314  Cryptarithmetic puzzle in Google CP Solver. 
    415 
  • 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 
    113""" 
    2  
    314  Crypto problem in Google CP Solver. 
    415 
  • 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 
    113""" 
    214  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 
    113""" 
    2   Eq 10 in Google CP Solver. 
     14  Eq 20 in Google CP Solver. 
    315 
    416  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 
    113""" 
    2  
    314  Olympic puzzle in Google CP Solver. 
    415 
Note: See TracChangeset for help on using the changeset viewer.