Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit c09de9e

Browse files
committed
libDesign: Fix hyperlinks
1 parent 813cab0 commit c09de9e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/design/design.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ Let's talk about just Python: the wrappers are in the [symengine.py project](htt
1010

1111
That was the reason we split the wrappers, so now in the (pure) C++ `symengine/symengine` repository, we only have to worry about speed, correctness, maintainability and a usable API, and we can concentrate on these things without worrying or even testing any kind of wrappers. In the wrappers (`symengine/symengine.py`, or `.jl`, `.rb`), we simply just use the C++ (or C) API and the only thing we care is so that the (Python) wrapper can be used from sympy/Sage (and we test that in the test suite), and that it doesn't introduce unnecessary overhead in terms of speed. Ruby or Julia wrappers then care about interoperability with other libraries in those languages.
1212

13-
* https://github.com/symengine/symengine.py
14-
* https://github.com/symengine/symengine.rb
15-
* https://github.com/symengine/SymEngine.jl
13+
* [https://github.com/symengine/symengine.py](https://github.com/symengine/symengine.py)
14+
* <https://github.com/symengine/symengine.rb>
15+
* <https://github.com/symengine/SymEngine.jl>
1616

1717
## Reference Counted Pointers
1818

@@ -147,7 +147,7 @@ gcc.
147147
The Python wrappers then just call this `add` function and provide natural mathematical syntax `(x + y) + (y + x)` at the Python level.
148148
149149
150-
[1] https://docs.trilinos.org/dev/packages/thyra/doc/html/LinearAlgebraFunctionConvention.pdf
150+
[1] <https://docs.trilinos.org/dev/packages/thyra/doc/html/LinearAlgebraFunctionConvention.pdf>
151151
152-
[2] http://www.math.ttu.edu/~kelong/Playa/html/
152+
[2] <http://www.math.ttu.edu/~kelong/Playa/html/>
153153

0 commit comments

Comments
 (0)