Skip to content

Commit

Permalink
Trying to get finer control over profiling.
Browse files Browse the repository at this point in the history
  • Loading branch information
Mikael Vejdemo-Johansson committed Mar 24, 2024
1 parent 70ee558 commit a34e4b7
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions src/test/scala/org/appliedtopology/tda4j/ProfilingSpec.scala
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,14 @@ class ProfilingSpec(args: Arguments) extends mutable.Specification {

}

section("bron-kerbosch")
("Bron-Kerbosch" >> {
var bk: HyperCubeProfiling =
HyperCubeProfiling(BronKerbosch[Int](), symmetry, bitlength, "BK")
}).section("bron-kerbosch")
})
section("bron-kerbosch")

section("zomorodian-incremental")
("Zomorodian Incremental" >> {
val zi: HyperCubeProfiling =
HyperCubeProfiling(
Expand All @@ -53,16 +57,19 @@ class ProfilingSpec(args: Arguments) extends mutable.Specification {
bitlength,
"ZI"
)
}).section("zomorodian-incremental")
})
section("zomorodian-incremental")

section("symmetric")
("Zomorodian Incremental with symmetry" >> {
val szi: HyperCubeProfiling = HyperCubeProfiling(
SymmetricZomorodianIncremental[Int, Int](symmetry),
symmetry,
bitlength,
"SZI"
)
}).section("symmetric")
})
section("symmetric")

section("generators")
"Zomorodian Incremental with symmetry group generators" >> {
Expand Down

0 comments on commit a34e4b7

Please sign in to comment.