Skip to content
Open
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
5 changes: 5 additions & 0 deletions src/fundamental_interface.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@
#
###############################################################################

function Base.:(==)(x::AbstractAlgebra.SetElem, y::AbstractAlgebra.SetElem)
x === y && return true
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've now just added this, to get the tests to run; but this is not meant to preempt any discussion, i.e., we can still remove it again, but I wanted to at least know if with this the OscarCI etc. tests complete or (still) don't.

throw(NotImplementedError(:(==), x, y))
end

###############################################################################
#
# Parents, elements and data type methods
Expand Down
Loading