Skip to content

Commit

Permalink
terminal_components -> attractors
Browse files Browse the repository at this point in the history
  • Loading branch information
daemontus committed Apr 17, 2018
1 parent afa9f10 commit e9ccddd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ apply plugin: 'application'

group = "com.github.sybila"
mainClassName = "com.github.sybila.MainKt"
version = '0.6.0'
version = '0.6.1'


// In this section you declare where to find the dependencies of your project
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/github/sybila/Main.kt
Original file line number Diff line number Diff line change
Expand Up @@ -142,12 +142,12 @@ fun main(args: Array<String>) {
val stateMap = components[i].entries().asSequence().map { (k, v) ->
"$k: ${v.map { it.asIntervals() }}"
}
outStream.println("${i + 1} terminal components: $stateMap")
outStream.println("${i + 1} attractors: $stateMap")
}
} else {
val result: MutableMap<String, List<StateMap<Set<Rectangle>>>> = HashMap()
for (i in 0 until components.size) {
result["${i+1}_terminal_components"] = listOf(components[i])
result["${i+1}_attractor(s)"] = listOf(components[i])
}

outStream.println(printJsonRectResults(odeModel, result))
Expand Down

0 comments on commit e9ccddd

Please sign in to comment.