using Pkg
Pkg.activate("../../.")
using Globtim
using DynamicPolynomials, DataFrames
using ProgressLogging
Activating project at `~/globtim`
using Pkg
Pkg.activate("../../.")
using Globtim
using DynamicPolynomials, DataFrames
using ProgressLogging
Activating project at `~/globtim`
We define the center and range of the square domain of approximation.
# Constants and Parameters
const n, a, b = 2, 5, 1
const scale_factor = a / b
= camel # Objective function
f = 6 # Initial Degree
d = 200
SMPL println("Number of samples: ", SMPL^2)
= test_input(f,
TR = n,
dim = [0.0, 0.0],
center = SMPL,
GN = scale_factor
sample_range )
Number of samples: 40000
test_input(2, [0.0, 0.0], 200, (0.1, 0.5), 0.002, (0.0, 0.0), 5.0, 1.0, 6, Globtim.camel)
The Constructor
function computes the coefficients of the polynomial approximant in the basis specified, with GN^2
samples distributed following the measure with respect to which the polynomial basis is orthogonal. The RationalPrecision
specifies that the conversion of the polynomial’s coefficients from the tensorized orthogonal basis to the standard monomial basis is carried out in high precision.
= Constructor(TR, d, basis=:chebyshev, precision=RationalPrecision)
pol_cheb = Constructor(TR, d, basis=:legendre, precision=RationalPrecision, normalized=true); pol_lege
current L2-norm: 5.403750270905881e-12
current L2-norm: 5.0293810818049854e-12
Note that with the Legendre
polynomials, it is necessary to run with the normalized
option to ensure that the polynomials are orthonormal with respect to the uniform measure on the domain of approximation.
@polyvar(x[1:n]) # Define polynomial ring
= solve_polynomial_system(
real_pts_cheb
x, n, d, pol_cheb.coeffs;=pol_cheb.basis,
basis=pol_cheb.precision,
precision=pol_cheb.normalized,
normalized
)
= solve_polynomial_system(
real_pts_lege
x, n, d, pol_lege.coeffs;=pol_lege.basis,
basis=pol_lege.precision,
precision=pol_lege.normalized)
normalized
= process_crit_pts(real_pts_cheb, f, TR)
df_cheb = process_crit_pts(real_pts_lege, f, TR); df_lege
using Optim
= analyze_critical_points(f, df_cheb, TR, tol_dist=0.00125);
df_cheb, df_min_cheb = analyze_critical_points(f, df_lege, TR, tol_dist=0.00125); df_lege, df_min_lege
Processing point 1 of 15
Optimization has converged within bounds: ✓
Processing point 2 of 15
Optimization has converged within bounds: ✓
Processing point 3 of 15
Optimization has converged within bounds: ✓
Processing point 4 of 15
Optimization has converged within bounds: ✓
Processing point 5 of 15
Optimization has converged within bounds: ✓
Processing point 6 of 15
Optimization has converged within bounds: ✓
Processing point 7 of 15
Optimization has converged within bounds: ✓
Processing point 8 of 15
Optimization has converged within bounds: ✓
Processing point 9 of 15
Optimization has converged within bounds: ✓
Processing point 10 of 15
Optimization has converged within bounds: ✓
Processing point 11 of 15
Optimization has converged within bounds: ✓
Processing point 12 of 15
Optimization has converged within bounds: ✓
Processing point 13 of 15
Optimization has converged within bounds: ✓
Processing point 14 of 15
Optimization has converged within bounds: ✓
Processing point 15 of 15
Optimization has converged within bounds: ✓
Processing point 1 of 15
Optimization has converged within bounds: ✓
Processing point 2 of 15
Optimization has converged within bounds: ✓
Processing point 3 of 15
Optimization has converged within bounds: ✓
Processing point 4 of 15
Optimization has converged within bounds: ✓
Processing point 5 of 15
Optimization has converged within bounds: ✓
Processing point 6 of 15
Optimization has converged within bounds: ✓
Processing point 7 of 15
Optimization has converged within bounds: ✓
Processing point 8 of 15
Optimization has converged within bounds: ✓
Processing point 9 of 15
Optimization has converged within bounds: ✓
Processing point 10 of 15
Optimization has converged within bounds: ✓
Processing point 11 of 15
Optimization has converged within bounds: ✓
Processing point 12 of 15
Optimization has converged within bounds: ✓
Processing point 13 of 15
Optimization has converged within bounds: ✓
Processing point 14 of 15
Optimization has converged within bounds: ✓
Processing point 15 of 15
Optimization has converged within bounds: ✓
using CairoMakie
CairoMakie.activate!
activate! (generic function with 1 method)
= cairo_plot_polyapprox_levelset(pol_cheb, TR, df_cheb, df_min_cheb, chebyshev_levels=true) fig_1
= cairo_plot_polyapprox_levelset(pol_lege, TR, df_lege, df_min_lege, chebyshev_levels=true) fig_2