Skip to content

Commit

Permalink
removing print from Alergia
Browse files Browse the repository at this point in the history
  • Loading branch information
Rapfff committed Mar 29, 2023
1 parent 2cccaf7 commit 3f7d20e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div align="center">
<h1>
<img src="logo.png" width="300">
<img src="https://raw.githubusercontent.com/Rapfff/jajapy/main/logo.png" width="300">
</h1><br>

[![Pypi](https://img.shields.io/pypi/v/jajapy)](https://pypi.org/project/jajapy/)
Expand Down
2 changes: 0 additions & 2 deletions jajapy/mc/Alergia.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,6 @@ def fit(self,traces: Set,alpha: float=0.1,
the machine it returns a `jajapy.MC`, otherwise it returns a `stormpy.SparseDtmc`
"""
self._initialize(traces,alpha)
self.T.pprint()
red = [self.T.root]
blue = [k for (k,_) in self.T.root.kids]
while len(blue)>0:
Expand All @@ -173,7 +172,6 @@ def fit(self,traces: Set,alpha: float=0.1,
for s2 in red:
if self.T.compatible(s1,s2,alpha):
self.T.merge(s2,s1)
self.T.pprint()
merged = True
break
if not merged:
Expand Down

0 comments on commit 3f7d20e

Please sign in to comment.