David L Parkhurst a3a7720931 Changed Restart file:
Writes a -1 in the index for a solution that has saturation <= 0.
On reading the restart file,
    A kdtree is made for all points that do NOT have solution -1
    A solution is selected from the nearest available solutions for all grid points
      defined to use the restart file (previously ignored -1, which wouldn't
      work either.
Changed doublize to use a vector reference.

Rewrote logic again for a dry cell and CSelectedOutputMap was not defined.
A RunString caused the Selected output map to change, which invalidated my iterator.
New logic makes the dummy run first, then loads the necessary CSelectedOutputMap.
Still has a problem if Selected output has now rows, but added an assert.

git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@8292 1feff8c3-07ed-0310-ac33-dd36852eb9cd
2013-12-06 17:44:42 +00:00
2013-11-27 07:53:01 +00:00
2012-01-12 00:30:56 +00:00
2013-12-06 17:44:42 +00:00
2010-02-23 05:06:14 +00:00
2012-12-15 04:42:03 +00:00
2012-12-14 04:04:50 +00:00
2012-12-14 04:04:50 +00:00
2013-11-27 07:53:01 +00:00
2011-03-25 06:06:14 +00:00
2010-04-27 20:53:16 +00:00
2010-02-23 05:09:09 +00:00
2010-02-23 05:09:09 +00:00
2013-11-01 04:20:31 +00:00
2012-02-06 22:05:40 +00:00
2013-08-06 21:47:19 +00:00
2010-02-23 05:09:09 +00:00
2010-02-23 05:09:09 +00:00
2013-01-30 21:43:52 +00:00
2013-09-10 22:57:00 +00:00
2013-01-30 21:49:30 +00:00
2010-07-18 20:13:13 +00:00
2013-01-30 21:43:52 +00:00

Building Static Libraries
=========================
     ./configure
     make LDFLAGS=-all-static check
     
   This will attemp to link ALL libraries statically. To be successful all libraries must have .a files.
     

Building Static iphreeqc Library
================================
     ./configure
     make LDFLAGS=-static check
     
   This will link the iphreeqc library statically.  All required additional libraries may be linked to
shared libraries.


Building shared and static iphreeqc Library (linking tests statically)
======================================================================
     ./configure
     make
     make LDFLAGS=-static check       # static to iphreeqc
   or
     make LDFLAGS=-all-static check   # completely static (if possible)
     
   This configuration will create both static and shared (if supported) iphreeqc libraries. But 
test programs (created during make check) will be statically linked to iphreeqc library
Description
No description provided
Readme 40 MiB
Languages
C++ 81.6%
Makefile 9.2%
C 4.8%
Fortran 1.8%
R 1%
Other 1.3%