Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pluto
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anders Blomdell
pluto
Commits
17add357
Commit
17add357
authored
5 years ago
by
Anders Blomdell
Browse files
Options
Downloads
Patches
Plain Diff
Generalize AUTO generation somewhat
parent
3b3238cd
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
robotlab_safety/pluto_auto.py
+2
-2
2 additions, 2 deletions
robotlab_safety/pluto_auto.py
robotlab_safety/safety_2020.sps
+0
-0
0 additions, 0 deletions
robotlab_safety/safety_2020.sps
with
2 additions
and
2 deletions
robotlab_safety/pluto_auto.py
+
2
−
2
View file @
17add357
...
@@ -17,11 +17,11 @@ class PlutoVariables:
...
@@ -17,11 +17,11 @@ class PlutoVariables:
pass
pass
def
codegen
(
self
,
expr
):
def
codegen
(
self
,
expr
):
m
=
re
.
match
(
'
([^=]+)=A
LL\(
(.*)\
)
'
,
expr
)
m
=
re
.
match
(
'
([^=]+)=A
ND\{(.*),
(.*)\
}
'
,
expr
)
if
m
:
if
m
:
lh
=
m
.
group
(
1
)
lh
=
m
.
group
(
1
)
regexp
=
m
.
group
(
2
).
replace
(
'
*
'
,
'
.*
'
)
regexp
=
m
.
group
(
2
).
replace
(
'
*
'
,
'
.*
'
)
rh
=
[
"
(%s+/SM_Pluto%d_Present)
"
%
(
v
,
self
.
by_name
[
v
][
0
])
rh
=
[
m
.
group
(
3
).
format
(
v
,
pluto
=
self
.
by_name
[
v
][
0
])
for
v
in
self
.
by_name
if
re
.
match
(
regexp
,
v
)]
for
v
in
self
.
by_name
if
re
.
match
(
regexp
,
v
)]
return
(
"
%s=%s
"
%
(
lh
,
'
*
'
.
join
(
rh
)))
return
(
"
%s=%s
"
%
(
lh
,
'
*
'
.
join
(
rh
)))
raise
Exception
(
'
Invalid expression
'
,
expr
)
raise
Exception
(
'
Invalid expression
'
,
expr
)
...
...
This diff is collapsed.
Click to expand it.
robotlab_safety/safety_2020.sps
+372 B (+1%)
View file @
17add357
File suppressed by a .gitattributes entry or the file's encoding is unsupported.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment