Skip to content

Commit

Permalink
Merge pull request #100 from JuliaReach/schillic/using
Browse files Browse the repository at this point in the history
Collect `using`s and avoid `using` packages
  • Loading branch information
schillic authored Jun 2, 2024
2 parents 021b489 + c52bdf2 commit b9523e5
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
16 changes: 15 additions & 1 deletion src/SpaceExParser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,22 @@ export readsxmodel, writesxmodel
Load dependencies
=========================================#

using HybridSystems, LazySets
using DataStructures: OrderedDict
using EzXML, HybridSystems, LazySets, MathematicalSystems, SymEngine
import MathematicalSystems
using MathematicalSystems: AbstractSystem, AbstractContinuousSystem,
LinearContinuousSystem, LinearControlContinuousSystem,
AffineContinuousSystem,
AffineControlContinuousSystem,
ConstrainedLinearContinuousSystem,
ConstrainedLinearControlContinuousSystem,
ConstrainedLinearControlDiscreteSystem,
ConstrainedAffineContinuousSystem,
ConstrainedAffineControlContinuousSystem
using EzXML: readxml, root, eachelement, nodename, nodecontent
using SymEngine: Basic, subs
import Base: convert
import SymEngine: convert, free_symbols

#=========================
Input/Output functions
Expand Down
3 changes: 0 additions & 3 deletions src/convert.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
import Base: convert
import SymEngine: convert, free_symbols

"""
is_linearcombination(L::Basic)
Expand Down

0 comments on commit b9523e5

Please sign in to comment.