Changeset 125
- Timestamp:
- 03/24/09 13:00:13 (7 years ago)
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Makefile
r124 r125 1 1 #--------------------------------------------------- 2 SOURCES = 2 VERSION = 0.1a1 3 3 #--------------------------------------------------- 4 4 … … 7 7 doc: 8 8 epydoc --config mystic.epydoc 9 mv -f shared,opt html 9 mkdir html 10 mv -f shared,opt html/mystic-${VERSION} 10 11 11 12 clean: -
mystic/mystic/__init__.py
r124 r125 115 115 Solvers are found here:: 116 116 `mystic.mystic.differential_evolution`, `mystic.mystic.scipy_optimize` 117 118 See http://dev.danse.us/trac/mystic for more information. 117 119 """ 118 120 __version__ = '0.1a1' 119 __author__ = 'Patrick Hung & Mike McKerns' 121 __author__ = 'Mike McKerns, Patrick Hung' 122 123 __license__ = """ 124 This software is part of the open-source DANSE project at the California 125 Institute of Technology, and is available subject to the conditions and 126 terms laid out below. By downloading and using this software you are 127 agreeing to the following conditions. 128 129 Redistribution and use in source and binary forms, with or without 130 modification, are permitted provided that the following conditions 131 are met:: 132 133 - Redistribution of source code must retain the above copyright 134 notice, this list of conditions and the following disclaimer. 135 136 - Redistribution in binary form must reproduce the above copyright 137 notice, this list of conditions and the following disclaimer in the 138 documentations and/or other materials provided with the distribution. 139 140 - Neither the name of the California Institute of Technology nor 141 the names of its contributors may be used to endorse or promote 142 products derived from this software without specific prior written 143 permission. 144 145 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 146 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED 147 TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 148 PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR 149 CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 150 EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 151 PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; 152 OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, 153 WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 154 OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF 155 ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 156 157 Copyright (c) 2009 California Institute of Technology. All rights reserved. 158 159 160 If you use this software to do productive scientific research that leads to 161 publication, we ask that you acknowledge use of the software by citing the 162 following paper in your publication:: 163 164 "mystic: a simple model-independent inversion framework", 165 Michael McKerns, Patrick Hung, and Michael Aivazis, unpublished; 166 http://dev.danse.us/trac/mystic 167 168 """ 120 169 121 170 # solvers … … 129 178 from tools import * 130 179 180 def copyright(): 181 """print copyright and reference""" 182 print __license__[-439:] 183 return 184 131 185 # end of file -
mystic/mystic/scemtools.py
r124 r125 12 12 uncertainty assessment of hydrologic model parameters, 13 13 WATER RESOURCES RESEARCH, VOL. 39, NO. 8, 1201, doi:10.1029/2002WR001642, 2003 14 Link:http://www.agu.org/pubs/crossref/2003/2002WR001642.shtml14 http://www.agu.org/pubs/crossref/2003/2002WR001642.shtml 15 15 16 16 [2] Vrugt JA, Nuallain , Robinson BA, Bouten W, Dekker SC, Sloot PM … … 18 18 environmental models, 19 19 Computers & Geosciences, Vol. 32, No. 8. (October 2006), pp. 1139-1155. 20 Link:http://www.science.uva.nl/research/scs/papers/archive/Vrugt2006b.pdf20 http://www.science.uva.nl/research/scs/papers/archive/Vrugt2006b.pdf 21 21 22 22 """ -
mystic/setup.py
r124 r125 14 14 name="mystic", 15 15 version="0.1a1", 16 author=" Patrick Hung & Mike McKerns"16 author="Mike McKerns, Patrick Hung" 17 17 maintainer="Mike McKerns", 18 18 maintainer_email="mmckerns@caltech.edu",
Note: See TracChangeset
for help on using the changeset viewer.