-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improved the documentation, especially the control
- Loading branch information
Mohamed Zenadi
committed
Jun 23, 2014
1 parent
5eca86e
commit 18dcbca
Showing
68 changed files
with
7,729 additions
and
4,232 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env bash | ||
|
||
function watch_dir { | ||
while inotifywait -e modify $1; do | ||
echo "$1 has changed, working..." | ||
doxygen | ||
# ./gen_sphx.sh pdf | ||
./gen_sphx.sh | ||
done | ||
} | ||
|
||
# watch_dir ../src & | ||
watch_dir ./source & | ||
watch_dir ../include | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
********************************************** | ||
API (work in progress) | ||
********************************************** | ||
|
||
.. doxygenclass:: abcd | ||
:project: abcd | ||
:members: | ||
|
||
.. doxygenfile:: defaults.h | ||
:project: abcd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
********************************************** | ||
TODO | ||
********************************************** | ||
|
||
Implementation TODO List | ||
======================== | ||
|
||
* Make it possible to call ``job_id = 2`` after a call to ``job_id = 3``. This should give more power to ther user on the direct solver. | ||
Possible use cases: | ||
- Change the number of workers the direct solver has on a precise node | ||
- Change some ``MUMPS`` control parameters related to the Analysis and Factorization phases. | ||
|
||
|
||
Documentation TODO List | ||
======================= | ||
.. todolist:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.