Current section
Files
Jump to
Current section
Files
src/gleastsq@options.erl
-module(gleastsq@options).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch, inline]).
-define(FILEPATH, "src\\gleastsq\\options.gleam").
-export_type([least_square_options/0]).
-type least_square_options() :: {iterations, integer()} |
{epsilon, float()} |
{tolerance, float()} |
{damping, float()} |
{damping_increase, float()} |
{damping_decrease, float()}.