mirror of
https://github.com/InsanusMokrassar/PsychomatrixBase.git
synced 2024-11-22 00:03:58 +00:00
update equals of Psychomatrix
This commit is contained in:
parent
c40a4de99d
commit
fdfd55cdb7
@ -1,4 +1,13 @@
|
|||||||
package com.github.insanusmokrassar.PsychomatrixBase
|
package com.github.insanusmokrassar.PsychomatrixBase
|
||||||
|
|
||||||
|
import com.github.insanusmokrassar.PsychomatrixBase.domain.entities.MutablePsychomatrix
|
||||||
|
import com.github.insanusmokrassar.PsychomatrixBase.domain.entities.operations.TwoGrowFour
|
||||||
|
import kotlinx.coroutines.experimental.runBlocking
|
||||||
|
import org.joda.time.DateTime
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
|
val psychomatrix = MutablePsychomatrix(DateTime.now().withDate(2022, 12, 22))
|
||||||
|
runBlocking {
|
||||||
|
println(psychomatrix.availableOperations.await())
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -186,4 +186,8 @@ open class Psychomatrix(val date: DateTime) {
|
|||||||
getDownDiagSum()
|
getDownDiagSum()
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
override fun equals(other: Any?): Boolean {
|
||||||
|
return super.equals(other) || (other as? Psychomatrix) ?.date == date
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user