Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
VIGNET Pierre
cadbiom
Commits
a1370fed
Commit
a1370fed
authored
Feb 07, 2020
by
VIGNET Pierre
Browse files
[lib] MCLQuery: fix typos
parent
7cf64feb
Changes
1
Hide whitespace changes
Inline
Side-by-side
library/cadbiom/models/clause_constraints/mcl/MCLQuery.py
View file @
a1370fed
...
...
@@ -375,17 +375,14 @@ class MCLSimpleQuery(object):
"""Print logical formulas in query"""
str_out
=
"Start_property: "
if
self
.
start_prop
:
str_out
=
str_out
+
self
.
start_prop
str_out
=
str_out
+
"
\n
Inv property: "
str_out
+
=
self
.
start_prop
str_out
+
=
"
\n
Inv property: "
if
self
.
inv_prop
:
str_out
=
str_out
+
self
.
inv_prop
str_out
=
str_out
+
"
\n
Final property: "
str_out
+
=
self
.
inv_prop
str_out
+
=
"
\n
Final property: "
if
self
.
final_prop
:
str_out
=
str_out
+
self
.
final_prop
str_out
=
str_out
+
"
\n
Variant property: "
str_out
+
=
self
.
final_prop
str_out
+
=
"
\n
Variant property: "
if
self
.
variant_prop
:
# str_out = str_out + self.variant_prop[0]
# for prop in self.variant_prop[1:]:
# str_out = str_out + ", " + prop
str_out
=
str_out
+
str
(
self
.
variant_prop
)
str_out
+=
str
(
self
.
variant_prop
)
return
str_out
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment