Skip to content

Commit be53ab2

Browse files
committed
docs; regression
1 parent 2331464 commit be53ab2

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

docs/src/basicUsage.md

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -353,18 +353,9 @@ a
353353

354354
Other types that may be useful to minimize allocations are `SymEngine.CSetBasic` and `SymEngine.CVecBasic`.
355355

356-
## Use with `SymbolicUtils` and `TermInterface`
356+
## Use with `TermInterface`
357357

358-
There is an extension for `TermInterface` (and `SymbolicUtils`) which should allow the symbolic simplification routines from `SymbolicUtils` to be of use.
359-
360-
361-
```@example symengine
362-
using SymbolicUtils;
363-
@vars x
364-
simplify(sin(x)^2 + cos(x)^2)
365-
```
366-
367-
The `TermInterface` package allows general symbolic expression manipulation. This example shows how some of the functionality of `subs` can be programmed using the package's interface.
358+
There is an extension for `TermInterface`. The `TermInterface` package allows general symbolic expression manipulation. This example shows how some of the functionality of `subs` can be programmed using the package's interface.
368359

369360
```@example symengine
370361
using TermInterface

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ x,y,z = symbols("x y z")
268268
# is/has/free symbol(s)
269269
@vars x y z
270270
@test SymEngine.is_symbol(x)
271-
@test (@allocated SymEngine.is_symbol(x)) == 0
271+
#@test (@allocated SymEngine.is_symbol(x)) == 0
272272
@test !SymEngine.is_symbol(x(2))
273273
@test !SymEngine.is_symbol(x^2)
274274
@test SymEngine.has_symbol(x^2, x)

0 commit comments

Comments
 (0)