Skip to content

Commit

Permalink
fixup! refactor: use SurrogatesBase for all surrogates in src/
Browse files Browse the repository at this point in the history
  • Loading branch information
sathvikbhagavan committed Feb 4, 2025
1 parent e021bdf commit db0c630
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Radials.jl
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ _center_bounds(x::Tuple, lb, ub) = ntuple(i -> (ub[i] - lb[i]) / 2, length(x))
_center_bounds(x, lb, ub) = (ub .- lb) ./ 2

"""
add_point!(rad::RadialBasis,new_x,new_y)
update!(rad::RadialBasis,new_x,new_y)
Add new samples x and y and update the coefficients. Return the new object radial.
"""
Expand Down
2 changes: 1 addition & 1 deletion src/Surrogates.jl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export LobachevskyStructure,
SecondOrderPolynomialStructure
export WendlandStructure
export AbstractSurrogate, SamplingAlgorithm
export Kriging, RadialBasis, add_point!, std_error_at_point
export Kriging, RadialBasis, std_error_at_point
# Parallelization Strategies
export potential_optimal_points
export MinimumConstantLiar, MaximumConstantLiar, MeanConstantLiar, KrigingBeliever,
Expand Down

0 comments on commit db0c630

Please sign in to comment.