Changeset 21905
- Timestamp:
- 08/01/17 15:54:00 (8 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/etc/environment.sh ¶
r21723 r21905 96 96 libpathappend "$PETSC_DIR/lib" 97 97 fi 98 99 SCOTCH_DIR="$ISSM_DIR/externalpackages/scotch/install" 100 libpathappend "$SCOTCH_DIR/lib" 98 101 99 102 SLEPC_DIR="$ISSM_DIR/externalpackages/slepc/install" -
TabularUnified issm/trunk-jpl/externalpackages/scotch/scotch.patch ¶
r14993 r21905 2227 2227 *************** 2228 2228 *** 192,197 **** 2229 --- 192,21 4----2229 --- 192,213 ---- 2230 2230 stratParserInit ( 2231 2231 const char * const string) /*+ Strategy string to parse +*/ 2232 2232 { 2233 2233 + /* reset static variables from previous runs (jes, 4/29/10) */ 2234 + yy_current_buffer = 0;2235 2234 + yy_hold_char = (char) 0; 2236 2235 + yy_n_chars=0; /* number of characters read into yy_ch_buf */ -
TabularUnified issm/trunk-jpl/m4/issm_options.m4 ¶
r21837 r21905 714 714 if test "x$HAVE_SCOTCH" = "xyes"; then 715 715 SCOTCHINCL="-DNOFILEIO -I$SCOTCH_ROOT/include -DSCOTCH_VERSION=\\\"UNKNOWN\\\"" 716 SCOTCHLIB="-L$SCOTCH_ROOT/lib -lnfioscotch -lnfioscotcherr -lnfioscotcherrexit -lscotchmetis"716 SCOTCHLIB="-L$SCOTCH_ROOT/lib -lnfioscotch -lnfioscotcherr -lnfioscotcherrexit " 717 717 AC_DEFINE([_HAVE_SCOTCH_],[1],[with Scotch in ISSM src]) 718 718 AC_SUBST([SCOTCHINCL]) -
TabularUnified issm/trunk-jpl/src/m/partition/partitioner.m ¶
r17686 r21905 41 41 md.qmu.vertex_weight=[]; 42 42 md.mesh.vertexconnectivity=[]; 43 recomputeadjacency='on'; 43 44 end 44 45 … … 80 81 if strcmpi(getfieldvalue(options,'weighting'),'on'), 81 82 weights=floor(md.qmu.vertex_weight/min(md.qmu.vertex_weight)); 83 else 84 weights=[]; 82 85 end 83 86 maptab=Scotch(md.qmu.adjacency,[],weights,[],'cmplt',[npart]); 84 87 85 part=maptab(:,2) ;%index partitions from 1 up. like metis.88 part=maptab(:,2)+1;%index partitions from 1 up. like metis. 86 89 87 90 elseif strcmpi(package,'linear'),
Note:
See TracChangeset
for help on using the changeset viewer.