<vistrail dbHost="" dbName="" dbPort="" id="" name="" version="0.8.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.vistrails.org/vistrail.xsd"><action date="2007-09-11 11:04:17" id="1" prevId="0" prune="" session="" user="cscheid"><add id="0" objectId="0" parentObjId="" parentObjType="" what="module"><module cache="1" id="0" name="MplPlot" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="1" objectId="0" parentObjId="0" parentObjType="module" what="location"><location id="0" x="-73.0" y="63.0" /></add></action><action date="2007-09-11 11:06:34" id="2" prevId="1" prune="" session="" user="cscheid"><add id="2" objectId="0" parentObjId="0" parentObjType="module" what="portSpec"><portSpec id="0" name="data" spec="(Variant)" type="input" /></add></action><action date="2007-09-11 11:06:35" id="3" prevId="2" prune="" session="" user="cscheid"><add id="3" objectId="0" parentObjId="0" parentObjType="module" what="function"><function id="0" name="source" pos="0" /></add><add id="4" objectId="0" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="0" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0A%23Z1%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.0%2C%201.0%2C%200.0%2C%200.0%29%0A%23Z2%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.5%2C%200.5%2C%201%2C%201%29%0A%23%20difference%20of%20Gaussians%0A%23Z%20%3D%2010.0%20%2A%20%28Z2%20-%20Z1%29%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></add></action><action date="2007-09-11 11:06:38" id="4" prevId="3" prune="" session="" user="cscheid"><add id="5" objectId="1" parentObjId="" parentObjType="" what="module"><module cache="1" id="1" name="MplPlot" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="6" objectId="1" parentObjId="1" parentObjType="module" what="location"><location id="1" x="-20.0" y="-33.0" /></add></action><action date="2007-09-11 11:07:02" id="5" prevId="4" prune="" session="" user="cscheid"><change id="7" newObjId="2" oldObjId="0" parentObjId="0" parentObjType="module" what="location"><location id="2" x="114.0" y="-31.0" /></change><change id="8" newObjId="3" oldObjId="1" parentObjId="1" parentObjType="module" what="location"><location id="3" x="-74.0" y="-29.0" /></change></action><action date="2007-09-11 11:07:02" id="6" prevId="5" prune="" session="" user="cscheid"><add id="9" objectId="1" parentObjId="1" parentObjType="module" what="portSpec"><portSpec id="1" name="data" spec="(Variant)" type="input" /></add></action><action date="2007-09-11 11:07:03" id="7" prevId="6" prune="" session="" user="cscheid"><add id="10" objectId="1" parentObjId="1" parentObjType="module" what="function"><function id="1" name="source" pos="0" /></add><add id="11" objectId="1" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="1" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%29" /></add></action><action date="2007-09-11 11:07:09" id="8" prevId="7" prune="" session="" user="cscheid"><add id="12" objectId="2" parentObjId="" parentObjType="" what="module"><module cache="1" id="2" name="PythonSource" package="edu.utah.sci.vistrails.basic" version="" /></add><add id="13" objectId="4" parentObjId="2" parentObjType="module" what="location"><location id="4" x="-46.0" y="93.0" /></add></action><action date="2007-09-11 11:10:58" id="9" prevId="8" prune="" session="" user="cscheid"><add id="14" objectId="2" parentObjId="2" parentObjType="module" what="function"><function id="2" name="source" pos="0" /></add><add id="15" objectId="2" parentObjId="2" parentObjType="function" what="parameter"><parameter alias="" id="2" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0A%0Adelta%20%3D%200.005%0Ax%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0Ay%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0AX%2C%20Y%20%3D%20meshgrid%28x%2C%20y%29%0A%0Adef%20lerp%28u%2C%20a%2C%20b%29%3A%0A%20%20%20return%20a%20%2B%20%28b%20-%20a%29%20%2A%20u%0A%0Asw%20%3D%201.0%0Anw%20%3D%202.0%0Ane%20%3D%201.5%0Ase%20%3D%202.5%0A%0As%20%3D%20lerp%28X%2C%20sw%2C%20se%29%0An%20%3D%20lerp%28X%2C%20nw%2C%20ne%29%0AZ%20%3D%20lerp%28Y%2C%20s%2C%20n%29%0A%0Adata%20%3D%20%28X%2C%20Y%2C%20Z%29%0A" /></add></action><action date="2007-09-11 11:12:18" id="10" prevId="9" prune="" session="" user="cscheid"><add id="16" objectId="2" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="2" name="sw" spec="(Float)" type="input" /></add></action><action date="2007-09-11 11:12:19" id="11" prevId="10" prune="" session="" user="cscheid"><add id="17" objectId="3" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="3" name="nw" spec="(Float)" type="input" /></add></action><action date="2007-09-11 11:12:19" id="12" prevId="11" prune="" session="" user="cscheid"><add id="18" objectId="4" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="4" name="ne" spec="(Float)" type="input" /></add></action><action date="2007-09-11 11:12:20" id="13" prevId="12" prune="" session="" user="cscheid"><add id="19" objectId="5" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="5" name="data" spec="(Variant)" type="output" /></add></action><action date="2007-09-11 11:12:25" id="14" prevId="13" prune="" session="" user="cscheid"><change id="20" newObjId="5" oldObjId="4" parentObjId="2" parentObjType="module" what="location"><location id="5" x="-46.0" y="95.0" /></change></action><action date="2007-09-11 11:12:38" id="15" prevId="14" prune="" session="" user="cscheid"><change id="21" newObjId="6" oldObjId="5" parentObjId="2" parentObjType="module" what="location"><location id="6" x="-46.0" y="96.0" /></change></action><action date="2007-09-11 11:13:10" id="16" prevId="15" prune="" session="" user="cscheid"><add id="22" objectId="0" parentObjId="" parentObjType="" what="connection"><connection id="0" /></add><add id="23" objectId="1" parentObjId="0" parentObjType="connection" what="port"><port id="1" moduleId="1" moduleName="MplPlot" name="data" spec="(edu.utah.sci.vistrails.basic:Variant)" type="destination" /></add><add id="24" objectId="0" parentObjId="0" parentObjType="connection" what="port"><port id="0" moduleId="2" moduleName="PythonSource" name="data" spec="(edu.utah.sci.vistrails.basic:Variant)" type="source" /></add></action><action date="2007-09-11 11:13:14" id="17" prevId="16" prune="" session="" user="cscheid"><add id="25" objectId="1" parentObjId="" parentObjType="" what="connection"><connection id="1" /></add><add id="26" objectId="3" parentObjId="1" parentObjType="connection" what="port"><port id="3" moduleId="0" moduleName="MplPlot" name="data" spec="(edu.utah.sci.vistrails.basic:Variant)" type="destination" /></add><add id="27" objectId="2" parentObjId="1" parentObjType="connection" what="port"><port id="2" moduleId="2" moduleName="PythonSource" name="data" spec="(edu.utah.sci.vistrails.basic:Variant)" type="source" /></add></action><action date="2007-09-11 11:13:18" id="18" prevId="17" prune="" session="" user="cscheid"><add id="28" objectId="3" parentObjId="" parentObjType="" what="module"><module cache="1" id="3" name="MplFigure" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="29" objectId="7" parentObjId="3" parentObjType="module" what="location"><location id="7" x="-70.0" y="-113.0" /></add></action><action date="2007-09-11 11:13:20" id="19" prevId="18" prune="" session="" user="cscheid"><add id="30" objectId="2" parentObjId="" parentObjType="" what="connection"><connection id="2" /></add><add id="31" objectId="5" parentObjId="2" parentObjType="connection" what="port"><port id="5" moduleId="3" moduleName="MplFigure" name="Script" spec="(edu.utah.sci.vistrails.basic:String)" type="destination" /></add><add id="32" objectId="4" parentObjId="2" parentObjType="connection" what="port"><port id="4" moduleId="1" moduleName="MplPlot" name="source" spec="(edu.utah.sci.vistrails.basic:String)" type="source" /></add></action><action date="2007-09-11 11:13:38" id="20" prevId="19" prune="" session="" user="cscheid"><add id="33" objectId="4" parentObjId="" parentObjType="" what="module"><module cache="1" id="4" name="MplFigure" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="34" objectId="9" parentObjId="4" parentObjType="module" what="location"><location id="9" x="-60.0" y="-103.0" /></add></action><action date="2007-09-11 11:13:42" id="21" prevId="20" prune="" session="" user="cscheid"><change id="35" newObjId="10" oldObjId="9" parentObjId="4" parentObjType="module" what="location"><location id="10" x="125.0" y="-121.0" /></change></action><action date="2007-09-11 11:13:42" id="22" prevId="21" prune="" session="" user="cscheid"><add id="36" objectId="3" parentObjId="" parentObjType="" what="connection"><connection id="3" /></add><add id="37" objectId="7" parentObjId="3" parentObjType="connection" what="port"><port id="7" moduleId="4" moduleName="MplFigure" name="Script" spec="(edu.utah.sci.vistrails.basic:String)" type="destination" /></add><add id="38" objectId="6" parentObjId="3" parentObjType="connection" what="port"><port id="6" moduleId="0" moduleName="MplPlot" name="source" spec="(edu.utah.sci.vistrails.basic:String)" type="source" /></add></action><action date="2007-09-11 11:13:51" id="23" prevId="22" prune="" session="" user="cscheid"><add id="39" objectId="5" parentObjId="" parentObjType="" what="module"><module cache="1" id="5" name="MplFigureCell" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="40" objectId="11" parentObjId="5" parentObjType="module" what="location"><location id="11" x="-40.0" y="-192.0" /></add></action><action date="2007-09-11 11:13:57" id="24" prevId="23" prune="" session="" user="cscheid"><add id="41" objectId="4" parentObjId="" parentObjType="" what="connection"><connection id="4" /></add><add id="42" objectId="9" parentObjId="4" parentObjType="connection" what="port"><port id="9" moduleId="5" moduleName="MplFigureCell" name="FigureManager" spec="(edu.utah.sci.vistrails.matplotlib:MplFigureManager)" type="destination" /></add><add id="43" objectId="8" parentObjId="4" parentObjType="connection" what="port"><port id="8" moduleId="3" moduleName="MplFigure" name="FigureManager" spec="(edu.utah.sci.vistrails.matplotlib:MplFigureManager)" type="source" /></add></action><action date="2007-09-11 11:14:05" id="25" prevId="24" prune="" session="" user="cscheid"><add id="44" objectId="6" parentObjId="" parentObjType="" what="module"><module cache="1" id="6" name="MplFigureCell" package="edu.utah.sci.vistrails.matplotlib" version="" /></add><add id="45" objectId="13" parentObjId="6" parentObjType="module" what="location"><location id="13" x="-30.0" y="-182.0" /></add></action><action date="2007-09-11 11:14:13" id="26" prevId="25" prune="" session="" user="cscheid"><change id="46" newObjId="14" oldObjId="13" parentObjId="6" parentObjType="module" what="location"><location id="14" x="146.0" y="-217.0" /></change></action><action date="2007-09-11 11:14:13" id="27" prevId="26" prune="" session="" user="cscheid"><add id="47" objectId="5" parentObjId="" parentObjType="" what="connection"><connection id="5" /></add><add id="48" objectId="11" parentObjId="5" parentObjType="connection" what="port"><port id="11" moduleId="6" moduleName="MplFigureCell" name="FigureManager" spec="(edu.utah.sci.vistrails.matplotlib:MplFigureManager)" type="destination" /></add><add id="49" objectId="10" parentObjId="5" parentObjType="connection" what="port"><port id="10" moduleId="4" moduleName="MplFigure" name="FigureManager" spec="(edu.utah.sci.vistrails.matplotlib:MplFigureManager)" type="source" /></add></action><action date="2007-09-11 11:15:08" id="28" prevId="27" prune="" session="" user="cscheid"><add id="50" objectId="6" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="6" name="se" spec="(Float)" type="input" /></add></action><action date="2007-09-11 11:15:08" id="29" prevId="28" prune="" session="" user="cscheid"><change id="51" newObjId="3" oldObjId="2" parentObjId="2" parentObjType="function" what="parameter"><parameter alias="" id="3" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0A%0Adelta%20%3D%200.005%0Ax%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0Ay%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0AX%2C%20Y%20%3D%20meshgrid%28x%2C%20y%29%0A%0Adef%20lerp%28u%2C%20a%2C%20b%29%3A%0A%20%20%20return%20a%20%2B%20%28b%20-%20a%29%20%2A%20u%0A%0A%23sw%20%3D%201.0%0A%23nw%20%3D%202.0%0A%23ne%20%3D%201.5%0A%23se%20%3D%202.5%0A%0As%20%3D%20lerp%28X%2C%20sw%2C%20se%29%0An%20%3D%20lerp%28X%2C%20nw%2C%20ne%29%0AZ%20%3D%20lerp%28Y%2C%20s%2C%20n%29%0A%0Adata%20%3D%20%28X%2C%20Y%2C%20Z%29%0A" /></change></action><action date="2007-09-11 11:15:47" id="30" prevId="29" prune="" session="" user="cscheid"><change id="52" newObjId="15" oldObjId="6" parentObjId="2" parentObjType="module" what="location"><location id="15" x="-46.0" y="95.0" /></change></action><action date="2007-09-11 11:15:47" id="31" prevId="30" prune="" session="" user="cscheid"><add id="53" objectId="3" parentObjId="2" parentObjType="module" what="function"><function id="3" name="ne" pos="1" /></add><add id="54" objectId="4" parentObjId="3" parentObjType="function" what="parameter"><parameter alias="" id="4" name="&lt;no description&gt;" pos="0" type="Float" val="" /></add></action><action date="2007-09-11 11:15:49" id="32" prevId="31" prune="" session="" user="cscheid"><add id="55" objectId="4" parentObjId="2" parentObjType="module" what="function"><function id="4" name="nw" pos="2" /></add><add id="56" objectId="5" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="5" name="&lt;no description&gt;" pos="0" type="Float" val="" /></add></action><action date="2007-09-11 11:15:51" id="33" prevId="32" prune="" session="" user="cscheid"><add id="57" objectId="5" parentObjId="2" parentObjType="module" what="function"><function id="5" name="se" pos="3" /></add><add id="58" objectId="6" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="6" name="&lt;no description&gt;" pos="0" type="Float" val="" /></add></action><action date="2007-09-11 11:15:54" id="34" prevId="33" prune="" session="" user="cscheid"><add id="59" objectId="6" parentObjId="2" parentObjType="module" what="function"><function id="6" name="sw" pos="4" /></add><add id="60" objectId="7" parentObjId="6" parentObjType="function" what="parameter"><parameter alias="" id="7" name="&lt;no description&gt;" pos="0" type="Float" val="" /></add></action><action date="2007-09-11 11:16:16" id="35" prevId="34" prune="" session="" user="cscheid"><change id="61" newObjId="8" oldObjId="4" parentObjId="3" parentObjType="function" what="parameter"><parameter alias="" id="8" name="&lt;no description&gt;" pos="0" type="Float" val="1.0" /></change></action><action date="2007-09-11 11:16:17" id="36" prevId="35" prune="" session="" user="cscheid"><change id="62" newObjId="9" oldObjId="5" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="9" name="&lt;no description&gt;" pos="0" type="Float" val="1.0" /></change></action><action date="2007-09-11 11:16:18" id="37" prevId="36" prune="" session="" user="cscheid"><change id="63" newObjId="10" oldObjId="6" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="10" name="&lt;no description&gt;" pos="0" type="Float" val="1" /></change></action><action date="2007-09-11 11:16:21" id="38" prevId="37" prune="" session="" user="cscheid"><change id="64" newObjId="11" oldObjId="7" parentObjId="6" parentObjType="function" what="parameter"><parameter alias="" id="11" name="&lt;no description&gt;" pos="0" type="Float" val="0.0" /></change></action><action date="2007-09-11 11:16:23" id="39" prevId="38" prune="" session="" user="cscheid"><change id="65" newObjId="12" oldObjId="10" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="12" name="&lt;no description&gt;" pos="0" type="Float" val="1.0" /></change></action><action date="2007-09-11 11:35:02" id="40" prevId="39" prune="" session="" user="cscheid"><change id="66" newObjId="13" oldObjId="1" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="13" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B1.0%5D%2C%20cmap%3Dcm.get_cmap%28%27jet%27%2C%200%29%29" /></change></action><action date="2007-09-11 11:35:19" id="41" prevId="40" prune="" session="" user="cscheid"><change id="67" newObjId="14" oldObjId="13" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="14" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B1.0%5D%29" /></change></action><action date="2007-09-11 11:36:17" id="42" prevId="41" prune="" session="" user="cscheid"><change id="68" newObjId="15" oldObjId="14" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="15" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.5o%5D%29" /></change></action><action date="2007-09-11 11:36:30" id="43" prevId="42" prune="" session="" user="cscheid"><add id="69" objectId="7" parentObjId="" parentObjType="" what="module"><module cache="1" id="7" name="CellLocation" package="edu.utah.sci.vistrails.spreadsheet" version="" /></add><add id="70" objectId="16" parentObjId="7" parentObjType="module" what="location"><location id="16" x="-117.708261146" y="-139.047185682" /></add></action><action date="2007-09-11 11:36:39" id="44" prevId="43" prune="" session="" user="cscheid"><change id="71" newObjId="17" oldObjId="16" parentObjId="7" parentObjType="module" what="location"><location id="17" x="-205.817368905" y="-122.526727977" /></change></action><action date="2007-09-11 11:36:39" id="45" prevId="44" prune="" session="" user="cscheid"><add id="72" objectId="6" parentObjId="" parentObjType="" what="connection"><connection id="6" /></add><add id="73" objectId="13" parentObjId="6" parentObjType="connection" what="port"><port id="13" moduleId="5" moduleName="SpreadsheetCell" name="Location" spec="(edu.utah.sci.vistrails.spreadsheet:CellLocation)" type="destination" /></add><add id="74" objectId="12" parentObjId="6" parentObjType="connection" what="port"><port id="12" moduleId="7" moduleName="CellLocation" name="self" spec="(edu.utah.sci.vistrails.spreadsheet:CellLocation)" type="source" /></add></action><action date="2007-09-11 11:36:49" id="46" prevId="45" prune="" session="" user="cscheid"><change id="75" newObjId="18" oldObjId="17" parentObjId="7" parentObjType="module" what="location"><location id="18" x="-204.867224136" y="-121.576583208" /></change></action><action date="2007-09-11 11:36:50" id="47" prevId="46" prune="" session="" user="cscheid"><add id="76" objectId="8" parentObjId="" parentObjType="" what="module"><module cache="1" id="8" name="CellLocation" package="edu.utah.sci.vistrails.spreadsheet" version="" /></add><add id="77" objectId="20" parentObjId="8" parentObjType="module" what="location"><location id="20" x="-194.867224136" y="-111.576583208" /></add></action><action date="2007-09-11 11:36:54" id="48" prevId="47" prune="" session="" user="cscheid"><change id="78" newObjId="21" oldObjId="20" parentObjId="8" parentObjType="module" what="location"><location id="21" x="284.955884208" y="-131.529623357" /></change></action><action date="2007-09-11 11:36:54" id="49" prevId="48" prune="" session="" user="cscheid"><add id="79" objectId="7" parentObjId="" parentObjType="" what="connection"><connection id="7" /></add><add id="80" objectId="15" parentObjId="7" parentObjType="connection" what="port"><port id="15" moduleId="6" moduleName="SpreadsheetCell" name="Location" spec="(edu.utah.sci.vistrails.spreadsheet:CellLocation)" type="destination" /></add><add id="81" objectId="14" parentObjId="7" parentObjType="connection" what="port"><port id="14" moduleId="8" moduleName="CellLocation" name="self" spec="(edu.utah.sci.vistrails.spreadsheet:CellLocation)" type="source" /></add></action><action date="2007-09-11 11:37:06" id="50" prevId="49" prune="" session="" user="cscheid"><add id="82" objectId="7" parentObjId="8" parentObjType="module" what="function"><function id="7" name="ColumnRowAddress" pos="0" /></add><add id="83" objectId="16" parentObjId="7" parentObjType="function" what="parameter"><parameter alias="" id="16" name="&lt;no description&gt;" pos="0" type="String" val="" /></add></action><action date="2007-09-11 11:37:10" id="51" prevId="50" prune="" session="" user="cscheid"><change id="84" newObjId="17" oldObjId="16" parentObjId="7" parentObjType="function" what="parameter"><parameter alias="" id="17" name="&lt;no description&gt;" pos="0" type="String" val="a1" /></change></action><action date="2007-09-11 11:37:18" id="52" prevId="51" prune="" session="" user="cscheid"><add id="85" objectId="8" parentObjId="7" parentObjType="module" what="function"><function id="8" name="ColumnRowAddress" pos="0" /></add><add id="86" objectId="18" parentObjId="8" parentObjType="function" what="parameter"><parameter alias="" id="18" name="&lt;no description&gt;" pos="0" type="String" val="" /></add></action><action date="2007-09-11 11:37:21" id="53" prevId="52" prune="" session="" user="cscheid"><change id="87" newObjId="19" oldObjId="18" parentObjId="8" parentObjType="function" what="parameter"><parameter alias="" id="19" name="&lt;no description&gt;" pos="0" type="String" val="a2" /></change></action><action date="2007-09-11 11:37:29" id="54" prevId="53" prune="" session="" user="cscheid"><change id="88" newObjId="20" oldObjId="15" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="20" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.5%5D%29" /></change></action><action date="2007-09-11 11:37:46" id="55" prevId="54" prune="" session="" user="cscheid"><change id="89" newObjId="21" oldObjId="19" parentObjId="8" parentObjType="function" what="parameter"><parameter alias="" id="21" name="&lt;no description&gt;" pos="0" type="String" val="b1" /></change></action><action date="2007-09-11 11:38:40" id="56" prevId="55" prune="" session="" user="cscheid"><change id="90" newObjId="22" oldObjId="20" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="22" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D2%29" /></change></action><action date="2007-09-11 11:44:03" id="57" prevId="56" prune="" session="" user="cscheid"><change id="91" newObjId="23" oldObjId="22" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="23" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D2%2C%20colors%3D%27k%27%29" /></change></action><action date="2007-09-11 11:48:26" id="58" prevId="57" prune="" session="" user="cscheid"><change id="92" newObjId="24" oldObjId="0" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="24" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0A%23Z1%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.0%2C%201.0%2C%200.0%2C%200.0%29%0A%23Z2%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.5%2C%200.5%2C%201%2C%201%29%0A%23%20difference%20of%20Gaussians%0A%23Z%20%3D%2010.0%20%2A%20%28Z2%20-%20Z1%29%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D2%29%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 11:58:06" id="59" prevId="58" prune="" session="" user="cscheid"><change id="93" newObjId="25" oldObjId="23" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="25" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D2%2C%20colors%3D%27k%27%29" /></change></action><action date="2007-09-11 11:58:17" id="60" prevId="59" prune="" session="" user="cscheid"><change id="94" newObjId="26" oldObjId="24" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="26" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0A%23Z1%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.0%2C%201.0%2C%200.0%2C%200.0%29%0A%23Z2%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.5%2C%200.5%2C%201%2C%201%29%0A%23%20difference%20of%20Gaussians%0A%23Z%20%3D%2010.0%20%2A%20%28Z2%20-%20Z1%29%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D2%29%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 12:02:39" id="61" prevId="60" prune="" session="" user="cscheid"><change id="95" newObjId="27" oldObjId="25" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="27" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k--%27%29" /></change></action><action date="2007-09-11 12:06:19" id="62" prevId="61" prune="" session="" user="cscheid"><change id="96" newObjId="28" oldObjId="27" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="28" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Asetp%28rc%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:07:54" id="63" prevId="62" prune="" session="" user="cscheid"><change id="97" newObjId="29" oldObjId="28" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="29" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Araise%20Exception%28str%28dir%28rc%29%29%0Asetp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:08:11" id="64" prevId="63" prune="" session="" user="cscheid"><change id="98" newObjId="22" oldObjId="3" parentObjId="1" parentObjType="module" what="location"><location id="22" x="-77.7691003359" y="-29.0" /></change></action><action date="2007-09-11 12:08:11" id="65" prevId="64" prune="" session="" user="cscheid"><change id="99" newObjId="30" oldObjId="29" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="30" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Araise%20Exception%28str%28dir%28rc%29%29%29%0Asetp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:08:41" id="66" prevId="65" prune="" session="" user="cscheid"><change id="100" newObjId="31" oldObjId="30" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="31" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Asetp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:08:58" id="67" prevId="66" prune="" session="" user="cscheid"><change id="101" newObjId="32" oldObjId="31" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="32" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D3%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:09:30" id="68" prevId="67" prune="" session="" user="cscheid"><change id="102" newObjId="33" oldObjId="26" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="33" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0A%23Z1%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.0%2C%201.0%2C%200.0%2C%200.0%29%0A%23Z2%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.5%2C%200.5%2C%201%2C%201%29%0A%23%20difference%20of%20Gaussians%0A%23Z%20%3D%2010.0%20%2A%20%28Z2%20-%20Z1%29%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D3%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 12:09:53" id="69" prevId="68" prune="" session="" user="cscheid"><change id="103" newObjId="34" oldObjId="32" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="34" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29" /></change></action><action date="2007-09-11 12:10:01" id="70" prevId="69" prune="" session="" user="cscheid"><change id="104" newObjId="35" oldObjId="33" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="35" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0A%23Z1%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.0%2C%201.0%2C%200.0%2C%200.0%29%0A%23Z2%20%3D%20bivariate_normal%28X%2C%20Y%2C%201.5%2C%200.5%2C%201%2C%201%29%0A%23%20difference%20of%20Gaussians%0A%23Z%20%3D%2010.0%20%2A%20%28Z2%20-%20Z1%29%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 14:10:21" id="71" prevId="70" prune="" session="" user="cscheid"><add id="105" objectId="7" parentObjId="2" parentObjType="module" what="portSpec"><portSpec id="7" name="points" spec="(Variant)" type="output" /></add></action><action date="2007-09-11 14:10:21" id="72" prevId="71" prune="" session="" user="cscheid"><change id="106" newObjId="36" oldObjId="3" parentObjId="2" parentObjType="function" what="parameter"><parameter alias="" id="36" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0A%0Adelta%20%3D%200.005%0Ax%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0Ay%20%3D%20arange%280.0%2C%201.0%2C%20delta%29%0AX%2C%20Y%20%3D%20meshgrid%28x%2C%20y%29%0A%0Adef%20lerp%28u%2C%20a%2C%20b%29%3A%0A%20%20%20return%20a%20%2B%20%28b%20-%20a%29%20%2A%20u%0A%0A%23sw%20%3D%201.0%0A%23nw%20%3D%202.0%0A%23ne%20%3D%201.5%0A%23se%20%3D%202.5%0A%0As%20%3D%20lerp%28X%2C%20sw%2C%20se%29%0An%20%3D%20lerp%28X%2C%20nw%2C%20ne%29%0AZ%20%3D%20lerp%28Y%2C%20s%2C%20n%29%0A%0Adata%20%3D%20%28X%2C%20Y%2C%20Z%29%0Apoints%20%3D%20%28ne%2C%20nw%2C%20sw%2C%20se%29%20%23%20sorted%20by%20angle" /></change></action><action date="2007-09-11 14:15:31" id="73" prevId="72" prune="" session="" user="cscheid"><add id="107" objectId="8" parentObjId="1" parentObjType="module" what="portSpec"><portSpec id="8" name="points" spec="(Variant)" type="input" /></add></action><action date="2007-09-11 14:15:32" id="74" prevId="73" prune="" session="" user="cscheid"><change id="108" newObjId="37" oldObjId="34" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="37" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Ab%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%0Aax%20%3D%20gcf%28%29%0Aax.text%280.1%2C%200.1%2C%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:15:43" id="75" prevId="74" prune="" session="" user="cscheid"><add id="109" objectId="8" parentObjId="" parentObjType="" what="connection"><connection id="8" /></add><add id="110" objectId="17" parentObjId="8" parentObjType="connection" what="port"><port id="17" moduleId="1" moduleName="MplPlot" name="points" spec="(edu.utah.sci.vistrails.basic:Variant)" type="destination" /></add><add id="111" objectId="16" parentObjId="8" parentObjType="connection" what="port"><port id="16" moduleId="2" moduleName="PythonSource" name="points" spec="(edu.utah.sci.vistrails.basic:Variant)" type="source" /></add></action><action date="2007-09-11 14:16:15" id="76" prevId="75" prune="" session="" user="cscheid"><change id="112" newObjId="38" oldObjId="37" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="38" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Ab%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%0Aax%20%3D%20gcf%28%29%0Aax.text%280.5%2C%200.9%2C%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%2C%20color%3D%27w%27%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:16:52" id="77" prevId="76" prune="" session="" user="cscheid"><change id="113" newObjId="23" oldObjId="22" parentObjId="1" parentObjType="module" what="location"><location id="23" x="-78.7378915592" y="-29.0" /></change></action><action date="2007-09-11 14:16:52" id="78" prevId="77" prune="" session="" user="cscheid"><change id="114" newObjId="39" oldObjId="38" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="39" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Ab%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%0Aax%20%3D%20gcf%28%29%0Aax.text%280.5%2C%200.9%2C%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:17:16" id="79" prevId="78" prune="" session="" user="cscheid"><change id="115" newObjId="24" oldObjId="15" parentObjId="2" parentObjType="module" what="location"><location id="24" x="-46.0" y="94.0312087767" /></change></action><action date="2007-09-11 14:17:16" id="80" prevId="79" prune="" session="" user="cscheid"><change id="116" newObjId="40" oldObjId="9" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="40" name="&lt;no description&gt;" pos="0" type="Float" val="0.0" /></change></action><action date="2007-09-11 14:18:59" id="81" prevId="80" prune="" session="" user="cscheid"><change id="117" newObjId="25" oldObjId="23" parentObjId="1" parentObjType="module" what="location"><location id="25" x="-79.7066827826" y="-29.0" /></change></action><action date="2007-09-11 14:18:59" id="82" prevId="81" prune="" session="" user="cscheid"><change id="118" newObjId="41" oldObjId="39" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="41" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0Aexcept%20ValueError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:19:30" id="83" prevId="82" prune="" session="" user="cscheid"><change id="119" newObjId="42" oldObjId="41" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="42" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0Arc%20%3D%20contour%28X%2CY%2CZ%2C%20%5B0.5%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:19:51" id="84" prevId="83" prune="" session="" user="cscheid"><change id="120" newObjId="43" oldObjId="12" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="43" name="&lt;no description&gt;" pos="0" type="Float" val="0.0" /></change></action><action date="2007-09-11 14:19:54" id="85" prevId="84" prune="" session="" user="cscheid"><change id="121" newObjId="44" oldObjId="11" parentObjId="6" parentObjType="function" what="parameter"><parameter alias="" id="44" name="&lt;no description&gt;" pos="0" type="Float" val="1.0" /></change></action><action date="2007-09-11 14:21:25" id="86" prevId="85" prune="" session="" user="cscheid"><change id="122" newObjId="45" oldObjId="42" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="45" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20rc%20%3D%20contour%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:21:39" id="87" prevId="86" prune="" session="" user="cscheid"><change id="123" newObjId="46" oldObjId="40" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="46" name="&lt;no description&gt;" pos="0" type="Float" val="0.3" /></change></action><action date="2007-09-11 14:28:33" id="88" prevId="87" prune="" session="" user="cscheid"><add id="124" objectId="9" parentObjId="0" parentObjType="module" what="portSpec"><portSpec id="9" name="points" spec="(Variant)" type="input" /></add></action><action date="2007-09-11 14:28:34" id="89" prevId="88" prune="" session="" user="cscheid"><add id="125" objectId="10" parentObjId="0" parentObjType="module" what="portSpec"><portSpec id="10" name="iso" spec="(Float)" type="input" /></add></action><action date="2007-09-11 14:28:34" id="90" prevId="89" prune="" session="" user="cscheid"><change id="126" newObjId="47" oldObjId="35" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="47" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20ax.contour3D%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 14:28:50" id="91" prevId="90" prune="" session="" user="cscheid"><add id="127" objectId="11" parentObjId="1" parentObjType="module" what="portSpec"><portSpec id="11" name="iso" spec="(Float)" type="input" /></add></action><action date="2007-09-11 14:28:50" id="92" prevId="91" prune="" session="" user="cscheid"><change id="128" newObjId="48" oldObjId="45" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="48" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2020%29%0Acontour%28X%2CY%2CZ%2C%20%5Biso%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20rc%20%3D%20contour%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:28:59" id="93" prevId="92" prune="" session="" user="cscheid"><add id="129" objectId="9" parentObjId="" parentObjType="" what="connection"><connection id="9" /></add><add id="130" objectId="19" parentObjId="9" parentObjType="connection" what="port"><port id="19" moduleId="0" moduleName="MplPlot" name="points" spec="(edu.utah.sci.vistrails.basic:Variant)" type="destination" /></add><add id="131" objectId="18" parentObjId="9" parentObjType="connection" what="port"><port id="18" moduleId="2" moduleName="PythonSource" name="points" spec="(edu.utah.sci.vistrails.basic:Variant)" type="source" /></add></action><action date="2007-09-11 14:29:05" id="94" prevId="93" prune="" session="" user="cscheid"><add id="132" objectId="9" parentObjId="" parentObjType="" what="module"><module cache="1" id="9" name="Float" package="edu.utah.sci.vistrails.basic" version="" /></add><add id="133" objectId="26" parentObjId="9" parentObjType="module" what="location"><location id="26" x="142.412309832" y="84.284836431" /></add></action><action date="2007-09-11 14:29:10" id="95" prevId="94" prune="" session="" user="cscheid"><add id="134" objectId="10" parentObjId="" parentObjType="" what="connection"><connection id="10" /></add><add id="135" objectId="21" parentObjId="10" parentObjType="connection" what="port"><port id="21" moduleId="0" moduleName="MplPlot" name="iso" spec="(edu.utah.sci.vistrails.basic:Float)" type="destination" /></add><add id="136" objectId="20" parentObjId="10" parentObjType="connection" what="port"><port id="20" moduleId="9" moduleName="Float" name="value" spec="(edu.utah.sci.vistrails.basic:Float)" type="source" /></add></action><action date="2007-09-11 14:29:13" id="96" prevId="95" prune="" session="" user="cscheid"><add id="137" objectId="11" parentObjId="" parentObjType="" what="connection"><connection id="11" /></add><add id="138" objectId="23" parentObjId="11" parentObjType="connection" what="port"><port id="23" moduleId="1" moduleName="MplPlot" name="iso" spec="(edu.utah.sci.vistrails.basic:Float)" type="destination" /></add><add id="139" objectId="22" parentObjId="11" parentObjType="connection" what="port"><port id="22" moduleId="9" moduleName="Float" name="value" spec="(edu.utah.sci.vistrails.basic:Float)" type="source" /></add></action><action date="2007-09-11 14:29:16" id="97" prevId="96" prune="" session="" user="cscheid"><change id="140" newObjId="27" oldObjId="26" parentObjId="9" parentObjType="module" what="location"><location id="27" x="141.443518608" y="84.284836431" /></change></action><action date="2007-09-11 14:29:16" id="98" prevId="97" prune="" session="" user="cscheid"><add id="141" objectId="9" parentObjId="9" parentObjType="module" what="function"><function id="9" name="value" pos="0" /></add><add id="142" objectId="49" parentObjId="9" parentObjType="function" what="parameter"><parameter alias="" id="49" name="&lt;no description&gt;" pos="0" type="Float" val="" /></add></action><action date="2007-09-11 14:29:21" id="99" prevId="98" prune="" session="" user="cscheid"><change id="143" newObjId="50" oldObjId="49" parentObjId="9" parentObjType="function" what="parameter"><parameter alias="" id="50" name="&lt;no description&gt;" pos="0" type="Float" val="0.3" /></change></action><action date="2007-09-11 14:29:35" id="100" prevId="99" prune="" session="" user="cscheid"><change id="144" newObjId="51" oldObjId="47" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="51" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5B0.3%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20ax.contour3D%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 14:30:11" id="101" prevId="100" prune="" session="" user="cscheid"><change id="145" newObjId="52" oldObjId="46" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="52" name="&lt;no description&gt;" pos="0" type="Float" val="-0.5" /></change></action><action date="2007-09-11 14:33:19" id="102" prevId="101" prune="" session="" user="cscheid"><change id="146" newObjId="28" oldObjId="25" parentObjId="1" parentObjType="module" what="location"><location id="28" x="-80.6754740059" y="-30.9375824467" /></change></action><action date="2007-09-11 14:33:25" id="103" prevId="102" prune="" session="" user="cscheid"><change id="147" newObjId="53" oldObjId="48" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="53" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2064%29%0Acontour%28X%2CY%2CZ%2C%20%5Biso%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20rc%20%3D%20contour%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 14:37:47" id="104" prevId="103" prune="" session="" user="cscheid"><change id="148" newObjId="54" oldObjId="52" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="54" name="&lt;no description&gt;" pos="0" type="Float" val="0.25" /></change></action><action date="2007-09-11 14:37:50" id="105" prevId="104" prune="" session="" user="cscheid"><change id="149" newObjId="55" oldObjId="43" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="55" name="&lt;no description&gt;" pos="0" type="Float" val="0.75" /></change></action><action date="2007-09-11 14:38:07" id="106" prevId="105" prune="" session="" user="cscheid"><change id="150" newObjId="56" oldObjId="55" parentObjId="5" parentObjType="function" what="parameter"><parameter alias="" id="56" name="&lt;no description&gt;" pos="0" type="Float" val="0.75" /></change></action><action date="2007-09-11 14:39:28" id="107" prevId="106" prune="" session="" user="cscheid"><change id="151" newObjId="57" oldObjId="51" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="57" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20iso%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20ax.contour3D%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 14:40:04" id="108" prevId="107" prune="" session="" user="cscheid"><change id="152" newObjId="58" oldObjId="57" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="58" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5Biso%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0A%0Atry%3A%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20%2B%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20ax.contour3D%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 14:44:09" id="109" prevId="108" prune="" session="" user="cscheid"><change id="153" newObjId="29" oldObjId="28" parentObjId="1" parentObjType="module" what="location"><location id="29" x="-80.6754740059" y="-29.0005368668" /></change></action><action date="2007-09-11 16:06:21" id="110" prevId="109" prune="" session="" user="cscheid"><change id="154" newObjId="59" oldObjId="53" parentObjId="1" parentObjType="function" what="parameter"><parameter alias="" id="59" name="&lt;no description&gt;" pos="0" type="String" val="%28X%2CY%2CZ%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20gcf%28%29%0A%0Acontourf%28X%2C%20Y%2C%20Z%2C%2064%29%0Acontour%28X%2CY%2CZ%2C%20%5Biso%5D%2C%20linewidths%3D5%2C%20colors%3D%27k%27%29%0A%0Atry%3A%0A%20%20%20%20%23%20Watch%20out%20for%20the%20typo%20in%20the%20paper%21%20page%203%20claims%0A%20%20%20%20%23%20it%27s%20b00%20b11%20%2B%20b10%20b01%20but%20the%20right%20one%20is%20b00%20b11%20-%20b10%20b01%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20-%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20rc%20%3D%20contour%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20linewidths%3D1.5%2C%20colors%3D%27k%27%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.text%280.5%2C%200.9%2C%20s%2C%20color%3D%27k%27%2C%20horizontalalignment%3D%27center%27%29%0A%0A%23%20setp%28rc%5B0%5D%2C%20linestyle%3D%27--%27%29%0A%0A" /></change></action><action date="2007-09-11 16:06:33" id="111" prevId="110" prune="" session="" user="cscheid"><change id="155" newObjId="60" oldObjId="58" parentObjId="0" parentObjType="function" what="parameter"><parameter alias="" id="60" name="&lt;no description&gt;" pos="0" type="String" val="from%20numpy%20import%20%2A%0Aimport%20matplotlib.axes3d%20as%20p3%0A%0A%28X%2C%20Y%2C%20Z%29%20%3D%20data%0A%28ne%2C%20nw%2C%20sw%2C%20se%29%20%3D%20points%0A%0Aax%20%3D%20p3.Axes3D%28gcf%28%29%29%0Aax.contour3D%28X%2CY%2CZ%2C%2050%29%0Aax.contour3D%28X%2CY%2CZ%2C%20%5Biso%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D5%29%0A%0Atry%3A%0A%20%20%20%20%23%20Watch%20out%20for%20the%20typo%20in%20the%20paper%21%20page%203%20claims%0A%20%20%20%20%23%20it%27s%20b00%20b11%20%2B%20b10%20b01%20but%20the%20right%20one%20is%20b00%20b11%20-%20b10%20b01%0A%20%20%20%20b%20%3D%20%28sw%20%2A%20ne%20-%20se%20%2A%20nw%29%20/%20%28sw%20%2B%20ne%20-%20se%20-%20nw%29%0A%20%20%20%20s%20%3D%20%22Asymptotic%20decider%3A%20%25.2f%22%20%25%20b%0A%20%20%20%20ax.contour3D%28X%2CY%2CZ%2C%20%5Bb%5D%2C%20colors%3D%27k%27%2C%20linewidths%3D1.5%29%0Aexcept%20ZeroDivisionError%3A%0A%20%20%20%20s%20%3D%20%22No%20valid%20decider%22%0A%0Aax.set_xlabel%28%27X%27%29%0Aax.set_ylabel%28%27Y%27%29%0Aax.set_zlabel%28%27Z%27%29%0A" /></change></action><action date="2007-09-11 16:07:48" id="112" prevId="111" prune="" session="" user="cscheid"><change id="156" newObjId="61" oldObjId="54" parentObjId="4" parentObjType="function" what="parameter"><parameter alias="" id="61" name="&lt;no description&gt;" pos="0" type="Float" val="0.5" /></change></action><action date="2007-09-11 16:08:03" id="113" prevId="112" prune="" session="" user="cscheid"><change id="157" newObjId="62" oldObjId="50" parentObjId="9" parentObjType="function" what="parameter"><parameter alias="" id="62" name="&lt;no description&gt;" pos="0" type="Float" val="0.6" /></change></action><action date="2007-09-11 16:08:15" id="114" prevId="113" prune="" session="" user="cscheid"><change id="158" newObjId="63" oldObjId="62" parentObjId="9" parentObjType="function" what="parameter"><parameter alias="" id="63" name="&lt;no description&gt;" pos="0" type="Float" val="0.72" /></change></action><action date="2007-09-11 16:08:26" id="115" prevId="114" prune="" session="" user="cscheid"><change id="159" newObjId="65" oldObjId="63" parentObjId="9" parentObjType="function" what="parameter"><parameter alias="" id="65" name="&lt;no description&gt;" pos="0" type="Float" val="0.81" /></change></action><tag id="115" name="Asymptotic decider on the plane" /></vistrail>