コード例 #1
0
ファイル: SMT.py プロジェクト: Tianyeshouren/CCSLSMT
 def addHistory(self):
     for clock in self.newClocks:
         history = None
         tick = self.tickDict["t_%s" % (clock)]
         if ("h_%s" % (clock)) not in self.historyDict.keys():
             history = z3.Function("h_%s" % (clock), z3.IntSort(),
                                   z3.IntSort())
             self.historyDict["h_%s" % (clock)] = history
         else:
             history = self.historyDict["h_%s" % (clock)]
         # self.solver.add(history(0) == z3.IntVal(0))
         self.solver.add(history(1) == z3.IntVal(0))
         if self.bound > 0:
             # If the bound is finite, we define the history of the clock with a fixed bound.
             for i in range(1, self.bound + 1):
                 self.solver.add(
                     z3.If(tick(i),
                           history(i + 1) == history(i) + 1,
                           history(i + 1) == history(i)))
                 # self.solver.add(z3.If(tick(i),
                 #                       history(i + 1) == history(i) + 1,
                 #                       history(i + 1) == history(i)))
         elif self.bound == 0:
             x = z3.Int("x")
             # If the bound is infinite, we define the history of the clock infinitely.
             self.solver.add(
                 z3.ForAll(
                     x,
                     z3.Implies(
                         x >= 1,
                         z3.If(tick(x),
                               history(x + 1) == history(x) + 1,
                               history(x + 1) == history(x)))))
コード例 #2
0
ファイル: SMT.py プロジェクト: Tianyeshouren/CCSLSMT
 def addTickStep(self, clock):
     tick = self.tickDict["t_%s" % (clock)]
     history = self.historyDict["h_%s" % (clock)]
     if "s_%s" % (clock) not in self.tickStep.keys():
         tickStep = z3.Function("s_%s" % (clock), z3.IntSort(),
                                z3.IntSort())
         self.tickStep["s_%s" % (clock)] = tickStep
         if self.bound > 0:
             x = z3.Int("x")
             # If the bound is infinite, we define the history of the clock infinitely.
             for i in range(1, self.bound + 1):
                 self.solver.add(
                     z3.Implies(tick(i),
                                tickStep(history(i) + 1) == i))
         elif self.bound == 0:
             x = z3.Int("x")
             # If the bound is infinite, we define the history of the clock infinitely.
             self.solver.add(
                 z3.ForAll(
                     x,
                     z3.Implies(z3.And(x >= 1, tick(x)),
                                tickStep(history(x) + 1) == x)))
コード例 #3
0
ファイル: SMT.py プロジェクト: Tianyeshouren/CCSLSMT
 def addTickSMT(self):
     for each in self.newClocks:
         self.tickDict["t_%s" % (each)] = z3.Function(
             "t_%s" % (each), z3.IntSort(), z3.BoolSort())
         tick = self.tickDict["t_%s" % (each)]
         if self.bound > 0:
             y = z3.Int("y")
             if self.period > 0:
                 for y in range(1, self.bound + 1):
                     self.solver.add(
                         z3.Implies(
                             y >= self.k,
                             tick((y - self.l) % self.p +
                                  self.l) == tick(y)))
                 # self.solver.add(
                 #     z3.ForAll(y,z3.Implies(
                 #         z3.And(y >= self.k,y <= self.bound),
                 #         tick((y - self.l) % self.p + self.l) == tick(y))))
         elif self.bound == 0:
             x = z3.Int("x")
             if self.period > 0:
                 y = z3.Int("y")
                 self.solver.add(
                     z3.ForAll(
                         y,
                         z3.Implies(
                             y >= self.k,
                             tick((y - self.l) % self.p +
                                  self.l) == tick(y))))
     clockListTmp = []
     x = z3.Int("x")
     for each in self.tickDict.keys():
         tick = self.tickDict[each]
         clockListTmp.append(tick(x))
     if self.bound == 0:
         self.solver.add(
             z3.ForAll(x, z3.Implies(x >= 1, z3.Or(clockListTmp))))
     else:
         for i in range(1, self.bound + 1):
             tmp = []
             for tick in self.tickDict.values():
                 tmp.append(tick(i))
             self.solver.add(z3.Or(tmp))