Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
tapasco
tapasco
Commits
ee529830
Commit
ee529830
authored
May 16, 2017
by
Jens Korinth
Browse files
Bugfix broken Run.compare
parent
0260f867
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/scala/tapasco/dse/Run.scala
View file @
ee529830
...
...
@@ -13,7 +13,8 @@ sealed private trait Run extends Startable with Ordered[Run] {
def
task
:
Option
[
ComposeTask
]
def
area
:
AreaEstimate
def
compare
(
that
:
Run
)
:
Int
=
(
this
.
area
,
this
.
element
.
h
,
this
.
element
.
frequency
)
compare
(
that
.
area
,
that
.
element
.
h
,
that
.
element
.
frequency
)
(
this
.
area
.
utilization
,
this
.
element
.
h
,
this
.
element
.
frequency
)
compare
(
that
.
area
.
utilization
,
that
.
element
.
h
,
that
.
element
.
frequency
)
}
private
class
ConcreteRun
(
val
no
:
Int
,
val
element
:
DesignSpace.Element
,
val
target
:
Target
,
val
debugMode
:
Option
[
String
])
...
...
Jens Korinth
@jk
mentioned in commit
a831b501
·
Jul 14, 2017
mentioned in commit
a831b501
mentioned in commit a831b5015df6bd8f8d23ddd334a3b1159392de92
Toggle commit list
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment