Changeset 9293
- Timestamp:
- Aug 12, 2014, 3:14:22 PM (11 years ago)
- Location:
- trunk/anuga_core/source
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/anuga_core/source/anuga/__init__.py
r9269 r9293 87 87 from anuga_parallel.parallel_api import send, receive 88 88 from anuga_parallel.parallel_api import pypar_available, barrier, finalize 89 from anuga_parallel.parallel_api import sequential_distribute_dump90 from anuga_parallel.parallel_api import sequential_distribute_load89 #from anuga_parallel.parallel_api import sequential_distribute_dump 90 #from anuga_parallel.parallel_api import sequential_distribute_load 91 91 92 92 -
trunk/anuga_core/source/anuga/utilities/spatialInputUtil.py
r9277 r9293 26 26 if we develop a version of ANUGA with sub-grid topography] 27 27 28 readRegionPtAreas -- read a shapefile containin regionPtAreas -- xy coordinates + 1 attribute, which is28 readRegionPtAreas -- read a shapefile containing regionPtAreas -- xy coordinates + 1 attribute, which is 29 29 the mesh triangle side length (or area) limit. Can be passed as regionPtAreas in 30 30 the mesh generation stage. -
trunk/anuga_core/source/anuga_parallel/parallel_api.py
r9261 r9293 11 11 from anuga.utilities.parallel_abstraction import pypar_available, barrier 12 12 13 from anuga_parallel.sequential_distribute import sequential_distribute_dump14 from anuga_parallel.sequential_distribute import sequential_distribute_load13 #from anuga_parallel.sequential_distribute import sequential_distribute_dump 14 #from anuga_parallel.sequential_distribute import sequential_distribute_load 15 15 16 16 -
trunk/anuga_core/source/anuga_parallel/pymetis/metis-4.0/Programs/Makefile
r8759 r9293 33 33 $(BINDIR)/pmetis$(VERNUM): $(PMETISOBJS) $(METISLIB) 34 34 $(LD) -o $@ $(PMETISOBJS) $(LIBS) 35 #chmod 755 $@ 35 36 36 37 37 $(BINDIR)/kmetis$(VERNUM): $(KMETISOBJS) $(METISLIB) 38 38 $(LD) -o $@ $(KMETISOBJS) $(LIBS) 39 #chmod 755 $@ 39 40 40 41 41 $(BINDIR)/oemetis$(VERNUM): $(OEMETISOBJS) $(METISLIB) 42 42 $(LD) -o $@ $(OEMETISOBJS) $(LIBS) 43 #chmod 755 $@ 43 44 44 45 45 $(BINDIR)/onmetis$(VERNUM): $(ONMETISOBJS) $(METISLIB) 46 46 $(LD) -o $@ $(ONMETISOBJS) $(LIBS) 47 #chmod 755 $@ 47 48 48 49 49 $(BINDIR)/mesh2dual$(VERNUM): $(MESH2DUALOBJ) $(METISLIB) 50 50 $(LD) -o $@ $(MESH2DUALOBJ) $(LIBS) 51 #chmod 755 $@ 51 52 52 53 53 $(BINDIR)/mesh2nodal$(VERNUM): $(MESH2NODALOBJ) $(METISLIB) 54 54 $(LD) -o $@ $(MESH2NODALOBJ) $(LIBS) 55 #chmod 755 $@ 55 56 56 57 57 $(BINDIR)/partdmesh$(VERNUM): $(PARTDMESHOBJ) $(METISLIB) 58 58 $(LD) -o $@ $(PARTDMESHOBJ) $(LIBS) 59 #chmod 755 $@ 59 60 60 61 61 $(BINDIR)/partnmesh$(VERNUM): $(PARTNMESHOBJ) $(METISLIB) 62 62 $(LD) -o $@ $(PARTNMESHOBJ) $(LIBS) 63 #chmod 755 $@ 63 64 64 65 65 $(BINDIR)/graphchk$(VERNUM): $(GRAPHCHKOBJ) $(METISLIB) 66 66 $(LD) -o $@ $(GRAPHCHKOBJ) $(LIBS) 67 #chmod 755 $@ 67 68 68 69 69
Note: See TracChangeset
for help on using the changeset viewer.