From 253106f3e4a50f64ea8ab3d557ebea9599d5435b Mon Sep 17 00:00:00 2001 From: ChrisRackauckas-Claude Date: Fri, 19 Jun 2026 04:40:58 -0400 Subject: [PATCH] Format FastPowerEnzymeExt.jl with JuliaFormatter v2 SciMLStyle The Format Check CI (SciML/.github format-check.yml@v1, JuliaFormatter v2 SciMLStyle) was red on main because ext/FastPowerEnzymeExt.jl was not formatted. Applying `format(".", SciMLStyle())` only touches this one file; re-running afterward reports the tree as already formatted. Purely cosmetic; no semantic change. Co-Authored-By: Chris Rackauckas Co-Authored-By: Claude Opus 4.8 (1M context) --- ext/FastPowerEnzymeExt.jl | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/ext/FastPowerEnzymeExt.jl b/ext/FastPowerEnzymeExt.jl index c01b21a..bca131b 100644 --- a/ext/FastPowerEnzymeExt.jl +++ b/ext/FastPowerEnzymeExt.jl @@ -5,9 +5,7 @@ import FastPower: fastpower using Enzyme using Enzyme.EnzymeRules: FwdConfig -Enzyme.EnzymeRules.@easy_rule( - FastPower.fastpower(x, y), - ( y * fastpower(x, y - 1), Ω * log(x) ) -) +Enzyme.EnzymeRules.@easy_rule(FastPower.fastpower(x, y), + (y * fastpower(x, y - 1), Ω * log(x))) end