Shuffle files and functions around for more consistent naming and smaller files
This commit is contained in:
11
src/task/compare.jl
Normal file
11
src/task/compare.jl
Normal file
@ -0,0 +1,11 @@
|
||||
function ==(t1::AbstractTask, t2::AbstractTask)
|
||||
return false
|
||||
end
|
||||
|
||||
function ==(t1::AbstractComputeTask, t2::AbstractComputeTask)
|
||||
return typeof(t1) == typeof(t2)
|
||||
end
|
||||
|
||||
function ==(t1::AbstractDataTask, t2::AbstractDataTask)
|
||||
return data(t1) == data(t2)
|
||||
end
|
Reference in New Issue
Block a user