Skip to content

v0.3.0

Compare
Choose a tag to compare
@github-actions github-actions released this 02 Jul 00:30

AdaptiveResonance v0.3.0

Diff since v0.2.4

This version defines several internal type aliases to standardize accepted numerical types throughout the package (inspired by StatsBase.jl).
Explicitly defining types has the benefit of improving compilation/run time, and generalizing these types takes a step towards letting this package run on 32-bit systems.
These internal abstract types are:

  • RealArray: any-dimensional array of real (floating point or integer) numbers.
  • RealVector: 1-D array of real numbers.
  • RealMatrix: 2-D array of real numbers.
  • IntegerArray: any-dimensional array of integer numbers.
  • IntegerVector: 1-D array of integers.
  • IntegerMatrix: 2-D array of integers.
  • RealFP: floating point numbers (32- or 64-bit, depending on the system).