Changeset 9641
- Timestamp:
- Feb 8, 2015, 11:30:09 PM (10 years ago)
- Location:
- trunk/anuga_core
- Files:
-
- 5 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/MANIFEST.in
r9638 r9641 4 4 include LICENCE.txt 5 5 recursive-include tools * 6 recursive-include user_manual*6 recursive-include doc * 7 7 recursive-include examples * 8 8 recursive-include anuga * -
trunk/anuga_core/anuga/__init__.py
r9621 r9641 24 24 test = Tester().test 25 25 26 27 # PEP0440 compatible formatted version, see: 28 # https://www.python.org/dev/peps/pep-0440/ 29 # 30 # Generic release markers: 31 # X.Y 32 # X.Y.Z # For bugfix releases 33 # 34 # Admissible pre-release markers: 35 # X.YaN # Alpha release 36 # X.YbN # Beta release 37 # X.YrcN # Release Candidate 38 # X.Y # Final release 39 # 40 # Dev branch marker is: 'X.Y.dev' or 'X.Y.devN' where N is an integer. 41 # 42 __version__ = '1.3.5' 43 44 __svn_revision__ = filter(str.isdigit, "$Revision$") 45 26 46 #from anuga.__metadata__ import __date__, __author__ 27 47 28 from .version import git_revision as __git_revision__ 29 from .version import svn_revision as __svn_revision__ 30 from .version import version as __version__ 48 #from .version import git_revision as __git_revision__ 49 #from .version import svn_revision as __svn_revision__ 50 51 52 31 53 32 54 -
trunk/anuga_core/anuga/pymetis/metis-4.0/metis.h
r2051 r9641 19 19 #include <malloc.h> 20 20 #endif 21 #ifdef _WIN32 22 #include <string.h> 23 #else 21 24 #include <strings.h> 22 # include <string.h>25 #endif 23 26 #include <ctype.h> 24 27 #include <math.h> -
trunk/anuga_core/anuga/tsunami_source/setup.py
r9614 r9641 16 16 config.add_data_dir(join('tests','data')) 17 17 18 19 config.add_extension('okada_tsunami_fortran',20 sources=['okada_tsunami_fortran.f'])18 if sys.platform != 'win32': 19 config.add_extension('okada_tsunami_fortran', 20 sources=['okada_tsunami_fortran.f']) 21 21 22 22 -
trunk/anuga_core/anuga/utilities/util_ext.h
r8968 r9641 28 28 #define P_ERROR_BUFFER_SIZE 65 29 29 30 #ifdef _WIN32 31 #define __func__ __FUNCTION__ 32 #endif 30 33 31 34 // check that numpy array objects are C contiguous memory … … 58 61 59 62 63 #ifdef _WIN32 64 65 #else 60 66 double max(double x, double y) { 61 67 //Return maximum of two doubles … … 72 78 else return y; 73 79 } 74 80 #endif 75 81 76 82 double sign(double x) {
Note: See TracChangeset
for help on using the changeset viewer.