Skip to content

Commit

Permalink
Merge pull request #3622 from JuliaReach/schillic/linter
Browse files Browse the repository at this point in the history
Add namespaces for linter warnings
  • Loading branch information
schillic authored Jul 26, 2024
2 parents 5706167 + e889cfb commit 39176b2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Initialization/init_SymEngine.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ false
```
"""
function _is_linearcombination(L::Basic)
return all(isempty.(free_symbols.(diff.(L, free_symbols(L)))))
return all(isempty.(free_symbols.(diff.(L, SymEngine.free_symbols(L)))))
end

_is_linearcombination(L::Expr) = _is_linearcombination(convert(Basic, L))
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/AbstractPolyhedron_functions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -657,7 +657,7 @@ function _linear_map_vrep(M::AbstractMatrix, P::AbstractPolyhedron,
if isnothing(backend)
backend = default_polyhedra_backend(P)
end
P = tovrep(P_hpoly; backend=backend)
P = HPolyhedronModule.tovrep(P_hpoly; backend=backend)
return _linear_map_vrep(M, P, algo; apply_convex_hull=apply_convex_hull)
end

Expand Down

0 comments on commit 39176b2

Please sign in to comment.