Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,19 @@ uuid = "d14a8603-c872-5ed3-9ece-53e0e82e39da"
version = "0.14.4"

[deps]
Espresso = "6912e4f1-e036-58b0-9138-08d1e6358ea9"
InteractiveUtils = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09"
MLStyle = "d8e11817-5142-5d16-987a-aa16d5891078"
MultivariatePolynomials = "102ac46a-7ee4-5c85-9060-abc95bfdeaa3"
RecipesBase = "3cdcf5f2-1ef4-517c-9805-6587b60abb01"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"

[compat]
Espresso = "0.6"
InteractiveUtils = "<0.0.1, 1.6"
LazySets = "5 - 6"
LinearAlgebra = "<0.0.1, 1.6"
MacroTools = "0.5"
MLStyle = "0.4"
MultivariatePolynomials = "0.3 - 0.5"
RecipesBase = "0.6 - 0.8, 1"
Requires = "1.3.1"
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,3 +43,18 @@ To install this package, use the following command inside Julia's REPL:
using Pkg
Pkg.add("MathematicalSystems")
```

## Testing

To run the tests from the command line:

```bash
$ julia --project=. -e 'using Pkg; Pkg.test()'
```

Or interactively from the Julia REPL:

```julia
julia> using Pkg; Pkg.activate(".")
julia> Pkg.test()
```
3 changes: 1 addition & 2 deletions src/MathematicalSystems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ using LinearAlgebra: LinearAlgebra, Adjoint, Diagonal, I, Transpose,
UniformScaling, checksquare, rank
using SparseArrays: sparsevec, spzeros
using RecipesBase: @recipe
using Espresso: matchex
using MacroTools: @capture
using MLStyle: @match
using InteractiveUtils: subtypes
import MultivariatePolynomials
using MultivariatePolynomials: AbstractPolynomialLike
Expand Down
Loading
Loading