Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
luzhuomi committed Jul 26, 2021
1 parent f318609 commit d0b5537
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/main/scala/com/github/luzhuomi/obsidian/SSAKL.scala
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,10 @@ object SSAKL {
}


def mkPhi(st1:State, st2:State)(implicit m:MonadError[SSAState, ErrorM]):SState[State, List[Phi]] =
m.pure(Nil) // todo
def mkPhi(st1:State, st2:State)(implicit m:MonadError[SSAState, ErrorM]):SState[State, List[Phi]] = (st1, st2) match {
case (State(vm1, eCtx1, ths1, _), State(vm2, eCtx2, ths2,_)) if (ths1.contains(eCtx1) && ths2.contains(eCtx2)) => m.pure(Nil) // todo

}

/**
* kstmtBlock - a special version just to handle StmtBlock
Expand Down

0 comments on commit d0b5537

Please sign in to comment.