diff --git a/dev/.documenter-siteinfo.json b/dev/.documenter-siteinfo.json
index ef2571e2..25860d3a 100644
--- a/dev/.documenter-siteinfo.json
+++ b/dev/.documenter-siteinfo.json
@@ -1 +1 @@
-{"documenter":{"julia_version":"1.11.0-DEV.1109","generation_timestamp":"2023-12-16T06:19:38","documenter_version":"1.1.2"}}
\ No newline at end of file
+{"documenter":{"julia_version":"1.11.0-DEV.1109","generation_timestamp":"2023-12-17T06:19:49","documenter_version":"1.1.2"}}
\ No newline at end of file
diff --git a/dev/api.html b/dev/api.html
index 6471c477..88d4aecb 100644
--- a/dev/api.html
+++ b/dev/api.html
@@ -10,4 +10,4 @@
julia> map(∇(*), (1,2,3), (4,5,6))
((4.0, 1.0), (5.0, 2.0), (6.0, 3.0))
The derivative ∂f/∂f
Note that since in Julia, there is no distinction between functions and values, there is in principle a partial derivative with respect to the function itself. However, said partial derivative is dropped by this interface. It is however available using the lower level ∂⃖ if desired. This interaction can also be used to obtain gradients with respect to only some of the arguments by using a closure:
∇((x,z)->f(x,y,z))(x, z) # returns (∂f/∂x, ∂f/∂z)
Though of course the same can be obtained by simply indexing the resulting tuple (in well-inferred code there should not be a performance difference between these two options).
This is a convenience syntax for taking the derivative of a function f: ℝ -> ℝ. In particular, for such a function f'(x) will be the first derivative of f at x (and similar for f''(x) and second derivatives and so on.)
Note that the syntax conflicts with the Base definition for the adjoint of a matrix and thus is not enabled by default. To use it, add the following to the top of your module:
Wraps a primal up with a tangent into the appropriate kind of AbstractBundle{1}. This is more or less the Diffractor equivelent of ForwardDiff.jl's Dual type.
dx represents the trival differential one-form of a one dimensional Riemannian manifold M. In particular, it is a section of the cotangent bundle of M, meaning it may be evaluted at a point x of M to obtain an element of the cotangent space T*ₓ M to M at x. We impose no restrictions on the representations of either the manifold itself or the cotangent space.
By default, the only implementation provided identifies T*ₓ ℝ ≃ ℝ, keeping watever type is used to represent ℝ. i.e.
dx(x::Real) = one(x)
However, users may provide additional overloads for custom representations of one dimensional Riemannian manifolds.
Finds the last index within the same basic block, on or after the start_search_idx which is not within a phi block. A phi-block is a run on PhiNodes or nothings that must be the first statements within the basic block.
If start_search_idx is not within a phi block to begin with, then just returns start_search_idx
Generates a closed form arithmetic expression for the N-th component of the action of a 1d jet (of order at least N) on a maximally symmetric (i.e. taylor) tangent bundle element. In particular, if we represent both the jet and the taylor tangent bundle element by their associated canonical taylor series:
The t′ᵢ can be found by explicitly plugging in t for every x and expanding out, dropping terms of orders that are higher. This computes closed form expressions for the t′ᵢ that are hopefully easier on the compiler.