text
stringlengths
1
24.5M
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
#include <iostream> #include <autodiff/forward/dual.hpp> using namespace autodiff; dual f(dual x) { return 1 + x + x*x + 1/x + log(x); } int main() { dual x = 1.0; dual u = f(x); double dudx = derivative(f, wrt(x), at(x)); std::cout << "u = " << u << std::endl; std::cout << "du/dx = " << dud...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The vector function for which a 4th order directional Taylor series will be computed. ArrayXreal4th f(const ArrayXreal4th& x) { return x.sin() / x; }...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The scalar function for which a 4th order directional Taylor series will be computed. real4th f(const real4th& x, const real4th& y, const real4th& z) { ...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The scalar function for which the gradient is needed real f(const ArrayXreal& x, const ArrayXreal& p, const real& q) { return (x * x).sum() * p.sum()...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The scalar function for which the gradient is needed real f(const ArrayXreal& x) { return (x * x.exp()).sum(); // sum([xi * exp(xi) for i = 1:5]) } ...
// C++ includes #include <iostream> #include <array> #include <numeric> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; using VectorXr = std::vector<real>; // The scalar function for which the gradient is needed real f(VectorXr x) { st...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> #include <autodiff/forward/dual/eigen.hpp> using namespace autodiff; // The scalar function for which the Hessian is needed dual2nd f(const ArrayXdual2nd& x, const ArrayXdual2nd& p, const dual2nd& q) { return (x * x).sum(...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> #include <autodiff/forward/dual/eigen.hpp> using namespace autodiff; // The scalar function for which the gradient is needed dual2nd f(const VectorXdual2nd& x) { return x.cwiseProduct(x).sum(); // sum([x(i) * x(i) for i =...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // The multi-variable function for which higher-order derivatives are needed (up to 4th order) dual4th f(dual4th x, dual4th y, dual4th z) { return 1 + x + y + z + x*y + y*z + x*z + x*y*z + exp(x/...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The vector function for which higher-order directional derivatives are needed (up to 4th order). ArrayXreal4th f(const ArrayXreal4th& x, real4th p) { ...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> using namespace autodiff; // The multi-variable function for which higher-order derivatives are needed (up to 4th order) real4th f(real4th x, real4th y, real4th z) { return sin(x) * cos(y) * exp(z); } int main() { re...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The vector function for which the Jacobian is needed VectorXreal f(const VectorXreal& x) { return x * x.sum(); } int main() { using Eigen::Map; ...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The vector function with parameters for which the Jacobian is needed VectorXreal f(const VectorXreal& x, const VectorXreal& p, const real& q) { retur...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/real.hpp> #include <autodiff/forward/real/eigen.hpp> using namespace autodiff; // The vector function for which the Jacobian is needed VectorXreal f(const VectorXreal& x) { return x * x.sum(); } int main() { using Eigen::Matri...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // Define functions A, Ax, Ay using double; analytical derivatives are available. double A(double x, double y) { return x*y; } double Ax(double x, double y) { return y; } double Ay(double x, double ...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // A type defining parameters for a function of interest struct Params { dual a; dual b; dual c; }; // The function that depends on parameters for which derivatives are needed dual f(dua...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // The multi-variable function for which derivatives are needed dual f(dual x, dual y, dual z) { return 1 + x + y + z + x*y + y*z + x*z + x*y*z + exp(x/y + y/z); } int main() { dual x = 1.0;...
// C++ includes #include <iostream> #include <complex> using namespace std; // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // Specialize isArithmetic for complex to make it compatible with dual namespace autodiff::detail { template<typename T> struct ArithmeticTraits<complex<T>> :...
// C++ includes #include <iostream> // autodiff include #include <autodiff/forward/dual.hpp> using namespace autodiff; // The single-variable function for which derivatives are needed dual f(dual x) { return 1 + x + x*x + 1/x + log(x); } int main() { dual x = 2.0; // the input...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; // A two-variable piecewise function for which derivatives are needed var f(var x, var y) { return condition(x < y, x * y, x * x); } int main() { var x = 1.0; // the input ...
// C++ includes #include <iostream> // autodiff include #include <autodiff/reverse/var.hpp> #include <autodiff/reverse/var/eigen.hpp> using namespace autodiff; // The scalar function for which the gradient is needed var f(const ArrayXvar& x) { return sqrt((x * x).sum()); // sqrt(sum([xi * xi for i = 1:5])) } int...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> #include <autodiff/reverse/var/eigen.hpp> using namespace autodiff; // The scalar function for which the gradient is needed var f(const ArrayXvar& x) { return sqrt((x * x).sum()); // sqrt(sum([xi * xi ...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; int main() { var x = 1.0; // the input variable x var y = 0.5; // the input variable y var z = 2.0; // the input variable z var u = x * log(y) * exp(z); // th...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; int main() { var x = 0.5; // the input variable x var u = sin(x) * cos(x); // the output variable u auto [ux] = derivativesx(u, wrt(x)); // evaluate the first orde...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; // A type defining parameters for a function of interest struct Params { var a; var b; var c; }; // The function that depends on parameters for which derivatives are ...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; // The multi-variable function for which derivatives are needed var f(var x, var y, var z) { return 1 + x + y + z + x*y + y*z + x*z + x*y*z + exp(x/y + y/z); } int main() { ...
// C++ includes #include <iostream> using namespace std; // autodiff include #include <autodiff/reverse/var.hpp> using namespace autodiff; // The single-variable function for which derivatives are needed var f(var x) { return 1 + x + x*x + 1/x + log(x); } int main() { var x = 2.0; // the input variable x ...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
#ifdef __clang__ #define CATCH_CONFIG_NO_CPP17_UNCAUGHT_EXCEPTIONS // Prevents error: 'uncaught_exceptions' is unavailable: introduced in macOS 10.12 (see discussion at https://github.com/catchorg/Catch2/issues/1218) #endif
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// _ _ // _ _|_ _ _|o_|__|_ // (_||_||_(_)(_|| | | // // automatic differentiation made easier in C++ // https://github.com/autodiff/autodiff // // Licensed under the MIT License <http://opensource.org/licenses/MIT>. // // Copyright © 2018–2024 Allan Leal // // Permission is hereby granted, fr...
// Copied and modified from box2D-lite: https://github.com/erincatto/box2d-lite /* MIT License Copyright (c) 2019 Erin Catto Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction,...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...
/* * Copyright (c) 2025 Chris Giles * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee, * provided that the above copyright notice appear in all copies. * Chris Giles makes no representations about the suitability * of this softwa...