This repository was archived by the owner on Mar 12, 2026. It is now read-only.
File tree Expand file tree Collapse file tree
src/main/scala/com/boombustgroup/amorfati Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -16,8 +16,8 @@ lazy val root = project
1616 " -Wunused:all" ,
1717 " -Wconf:msg=Alphanumeric method.*is not declared infix:s" ,
1818 ),
19- Compile / mainClass := Some (" com.boombustgroup.amorfati.sfcMonteCarlo " ),
20- assembly / mainClass := Some (" com.boombustgroup.amorfati.sfcMonteCarlo " ),
19+ Compile / mainClass := Some (" com.boombustgroup.amorfati.simulate " ),
20+ assembly / mainClass := Some (" com.boombustgroup.amorfati.simulate " ),
2121 assembly / assemblyJarName := " amor-fati.jar" ,
2222 // Disable parallel test execution: production code uses global scala.util.Random,
2323 // so concurrent suites would cause non-deterministic interleaving (breaks reproducibility test)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import com.boombustgroup.amorfati.config.SimParams
44import com .boombustgroup .amorfati .montecarlo .{McRunConfig , McRunner }
55
66// $COVERAGE-OFF$ entry point only
7- @ main def sfcMonteCarlo (
7+ @ main def simulate (
88 nSeedsStr : String ,
99 outputPrefix : String ,
1010): Unit =
Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ object DescriptiveStats:
6464 fromSorted(values)
6565
6666 /** Compute from a **pre-sorted** array. Package-private — callers outside
67- * `sfc ` must use [[from ]].
67+ * `amorfati ` must use [[from ]].
6868 */
6969 private [amorfati] def fromSorted (sorted : Array [Double ]): DescriptiveStats =
7070 val n = sorted.length
You can’t perform that action at this time.
0 commit comments