Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add a SimGrid 101 presentation as a quick starter for potential users
[simgrid.git] / doc / use.doc
1 /*! \page use Using SimGrid
2
3 \section use_welcome Welcome to SimGrid!
4
5 If you don't know were to look to start with, you should probably have
6 a look at the following presentation first to get the basic concepts.
7 Afterward, you probably want to proceed to the \ref MSG_API. Of
8 course, if you're curious or if you know what you want, you may prefer
9 to go to \ref SMPI_API, or even \ref GRAS_API.
10
11 \htmlonly 
12 <script language="javascript">
13 var base="simgrid-101",max=30,cur=1;
14 function pad(){ return cur < 10 ? '00' + cur : cur < 100 ? '0' + cur : '' + cur; }
15 function slidemove(dir) {
16         var nums=document.getElementById('nums'), display=document.getElementById('display');
17         if (cur+dir>0 && cur+dir<=max)  cur+=dir;
18         display.src=base+'_'+pad()+'.png';
19         nums.innerHTML=(cur)+'/'+max;
20 }
21 </script>
22
23 <div id='blah' style='text-align:center;'>
24   <div id='practical-simgrid' > 
25     <img src='simgrid-101_001.png' id="display" onclick='slidemove(1)'/>
26     <br/>
27     <form>
28       <input type='button' value='&laquo; Previous' onclick="slidemove(-1)"/>
29       &nbsp;&nbsp;
30       <span id="nums">1/30</span>&nbsp;&nbsp
31       <input type='button' value='Next &raquo;' onclick="slidemove(1)"/>
32       <br/>  
33       <a href='simgrid-101.pdf'>Download PDF version</a>
34     </form>  
35   </div>
36 </div>
37 \endhtmlonly              
38
39
40 */