Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Solve white space conflicts
[simgrid.git] / doc / user_guide / doxygen / 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 The scientific bases of the SimGrid project are presented in a 3 ou 4
12 hours-long tutorial. It can be found at the following locations.
13  - https://gforge.inria.fr/plugins/scmgit/cgi-bin/gitweb.cgi?p=simgrid/propaganda.git;a=blob_plain;f=tutorial/simgrid-tutorial.pdf;hb=HEAD
14  - http://webloria.loria.fr/~quinson/blog/2010/0628/Tutorial_at_HPCS/
15
16 \latexonly
17 \includepdf[nup=2x4,pages=1-]{../webcruft/simgrid-101.pdf}
18 \endlatexonly
19
20 \htmlonly
21 <script language="javascript">
22 var base="simgrid-101",max=30,cur=1;
23 function pad(){ return cur < 10 ? '00' + cur : cur < 100 ? '0' + cur : '' + cur; }
24 function slidemove(dir) {
25         var nums=document.getElementById('nums'), display=document.getElementById('display');
26         if (cur+dir>0 && cur+dir<=max)  cur+=dir;
27         display.src=base+'_'+pad()+'.png';
28         nums.innerHTML=(cur)+'/'+max;
29 }
30 </script>
31
32 <div id='blah' style='text-align:center;'>
33   <div id='practical-simgrid' >
34     <img src='simgrid-101_001.png' id="display" onclick='slidemove(1)'/>
35     <br/>
36     <form>
37       <input type='button' value='&laquo; Previous' onclick="slidemove(-1)"/>
38       &nbsp;&nbsp;
39       <span id="nums">1/30</span>&nbsp;&nbsp
40       <input type='button' value='Next &raquo;' onclick="slidemove(1)"/>
41       <br/>
42       <a href='simgrid-101.pdf'>Download PDF version</a>
43     </form>
44   </div>
45 </div>
46 \endhtmlonly
47
48
49 */