Browse Source

Fixed some links in documentation

refactoring
Matthias Volk 8 years ago
parent
commit
ed1a7723fd
  1. 4
      doc/source/getting_started.rst
  2. 19
      doc/source/installation.rst

4
doc/source/getting_started.rst

@ -8,10 +8,10 @@ A Quick Tour through Stormpy
================================ ================================
This guide is intended for people which have a basic understanding of probabilistic models and their verification. More details and further pointers to literature can be found on the This guide is intended for people which have a basic understanding of probabilistic models and their verification. More details and further pointers to literature can be found on the
`storm website <https://moves-rwth.github.io/storm>`_.
`storm website <http://www.stormchecker.org/>`_.
While we assume some very basic programming concepts, we refrain from using more advanced concepts of python throughout the guide. While we assume some very basic programming concepts, we refrain from using more advanced concepts of python throughout the guide.
We start with a selection of high-level constructs in stormpy, and go into more details afterwards.
We start with a selection of high-level constructs in stormpy, and go into more details afterwards.
.. seealso:: The code examples are also given in the examples/ folder. These boxes throughout the text will tell you which example contains the code discussed. .. seealso:: The code examples are also given in the examples/ folder. These boxes throughout the text will tell you which example contains the code discussed.

19
doc/source/installation.rst

@ -5,13 +5,13 @@ Installation
Requirements Requirements
================== ==================
Before installing stormpy, make sure
Before installing stormpy, make sure
- `pycarl <https://moves-rwth.github.io/pycarl>`_
- `storm <https://moves-rwth.github.io/storm/>`_
- `pycarl <https://moves-rwth.github.io/pycarl>`_
- `storm <http://www.stormchecker.org/>`_
are both available on your system. To avoid issues, we suggest that both use the same version of `carl <https://smtrat.github.io/carl>`_.
The simplest way of ensuring this is to first install carl as explained in the `storm installation guide <https://moves-rwth.github.io/storm/documentation/installation/configuration-guide.html#carl>`_.
are both available on your system. To avoid issues, we suggest that both use the same version of `carl <https://smtrat.github.io/carl>`_.
The simplest way of ensuring this is to first install carl as explained in the `storm installation guide <http://www.stormchecker.org/documentation/installation/manual-configuration.html#carl>`_.
You can then install storm and pycarl independently. You can then install storm and pycarl independently.
.. topic:: Virtual Environments .. topic:: Virtual Environments
@ -25,7 +25,7 @@ Installation Steps
Clone stormpy into any suitable location:: Clone stormpy into any suitable location::
$ git clone https://srv-i2.informatik.rwth-aachen.de/scm/git/stormpy.git
$ git clone https://github.com/moves-rwth/stormpy.git
$ cd stormpy $ cd stormpy
Here, build stormpy in develop mode using your favourite python distribution way of installing: e.g.:: Here, build stormpy in develop mode using your favourite python distribution way of installing: e.g.::
@ -42,12 +42,11 @@ or::
If you have multiple versions of storm or cmake is not able to find your storm version, If you have multiple versions of storm or cmake is not able to find your storm version,
you can specify the `--storm-DIR YOUR-PATH-TO-STORM` flag in the build_ext step:: you can specify the `--storm-DIR YOUR-PATH-TO-STORM` flag in the build_ext step::
$ python3 setup.py build_ext --storm-DIR YOUR-PATH-TO-STORM develop
$ python3 setup.py build_ext --storm-DIR YOUR-PATH-TO-STORM develop
After building, you can run the test files by:: After building, you can run the test files by::
py.test tests/
py.test tests/
If tests pass, you can continue with our :doc:`getting_started`. If tests pass, you can continue with our :doc:`getting_started`.

Loading…
Cancel
Save