Hi,
I am using Julia 1.8.0 in windows 10, and I have updated all my packages. I want to implement the example in the sparsity section of the SumofSquare package (Term sparsity · SumOfSquares).
when I run the following code:
using SumOfSquares
Sparsity.NoPattern()
I get the error:
LoadError: type DataType has no field NoPattern
in expression starting at untitled-7a4e1ebf8fcbd16f45516544e1a037c0:2
getproperty(x::Type, f::Symbol) at Base.jl:33
top-level scope at untitled-7a4e1ebf8fcbd16f45516544e1a037c0:2
eval at boot.jl:368 [inlined]
include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:1428
or if I run:
using SumOfSquares
Sparsity.Monomial()
I get the error:
LoadError: type DataType has no field Monomial
in expression starting at untitled-7a4e1ebf8fcbd16f45516544e1a037c0:2
getproperty(x::Type, f::Symbol) at Base.jl:33
top-level scope at untitled-7a4e1ebf8fcbd16f45516544e1a037c0:2
eval at boot.jl:368 [inlined]
include_string(mapexpr::typeof(identity), mod::Module, code::String, filename::String) at loading.jl:1428
Edit:
It seems the SumOfSquare package has not been fully added. This is because some of the objects of this package are not defined. For example, after running
Symmetry
I get
ERROR: UndefVarError: Symmetry not defined
or after runnign
ChordalExtensionGraph
I get
ERROR: UndefVarError: ChordalExtensionGraph not defined
and many more.