1<!DOCTYPE html> 2<html> 3 <head> 4 <title>PETSc Solver Selection</title> 5 <script src="https://www.mcs.anl.gov/research/projects/saws/js/jquery-1.9.1.js"></script> 6 <!-- <link href="https://www.mcs.anl.gov/research/projects/saws/js/jquery-ui-1.10.3.custom/css/ui-lightness/jquery-ui-1.10.3.custom.css" rel="stylesheet"> 7 <script src="https://www.mcs.anl.gov/research/projects/saws/js/jquery-ui-1.10.3.custom/js/jquery-1.9.1.js"></script> 8 <script src="https://www.mcs.anl.gov/research/projects/saws/js/jquery-ui-1.10.3.custom/js/jquery-ui-1.10.3.custom.js"></script> --> 9 <script src="js/matrixTex.js"></script> 10 <script src="js/main.js"></script> 11 <!-- <script src="https://d3js.org/d3.v3.min.js" charset="utf-8"></script> --> 12 <script src="js/tree.js"></script> 13 <script src="js/populateLists.js"></script> 14 <script src="js/listLogic.js"></script> 15 <script src="js/getCmdOptions.js"></script> 16 <script src="js/utils.js"></script> 17 <script src="js/events.js"></script> 18 <script src="js/defaults.js"></script> 19 <script src="js/boxTree.js"></script> 20 <script src="js/treeInterface.js"></script> 21 <script src="https://www.mcs.anl.gov/research/projects/saws/js/SAWs.js"></script> 22 <script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script> 23 <style type="text/css"> 24 25 body 26 { 27 background-color: #E8E8E8; 28 } 29 30 nav a {text-decoration:none;color:#344873;font-family: Georgia, serif;} 31 </style> 32 </head> 33 34 <body> 35 <header style="background-color:#000033;color:#FFFFFF; padding:5px;text-align:left;"> 36 <h1> PETSc Linear Solver Selection </h1> 37 </header> 38 39 <!-- overflow:hidden makes sure div expands with floated items as well --> 40 <div id="outside" style="overflow: hidden;background-color:#90C7E3;padding:5px;" > 41 <div id="tree" align="center"></div> 42 </div> <!-- end div outside --> 43 44 <!--min-width allows for expandable div but with a minimum width --> 45 46 <div id="results" style="min-width:1000px;float:left;margin:10px;font-size:14px;"> 47 <h3>Your Solver Options: </h3> 48 </div> <!-- endof div id="results" this div is used to contain the dropdown menus--> 49 50 </body> 51</html> 52