numberlab 0.1.5

A collection of numerical algorithms
Documentation
[[bench]]
harness = false
name = "factorization"
path = "benches/factorization.rs"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"

[[example]]
name = "algorithm_factorize"
path = "examples/algorithm_factorize.rs"

[[example]]
name = "coordinate_cartesian"
path = "examples/coordinate_cartesian.rs"

[[example]]
name = "coordinate_polar"
path = "examples/coordinate_polar.rs"

[[example]]
name = "figurate_hexagonal"
path = "examples/figurate_hexagonal.rs"

[[example]]
name = "figurate_lazy_caterer"
path = "examples/figurate_lazy_caterer.rs"

[[example]]
name = "figurate_pentagonal"
path = "examples/figurate_pentagonal.rs"

[[example]]
name = "figurate_square"
path = "examples/figurate_square.rs"

[[example]]
name = "figurate_star"
path = "examples/figurate_star.rs"

[[example]]
name = "figurate_stella_octangula"
path = "examples/figurate_stella_octangula.rs"

[[example]]
name = "figurate_triangular"
path = "examples/figurate_triangular.rs"

[[example]]
name = "formula_combination"
path = "examples/formula_combination.rs"

[[example]]
name = "formula_gcd"
path = "examples/formula_gcd.rs"

[[example]]
name = "formula_lcm"
path = "examples/formula_lcm.rs"

[[example]]
name = "formula_permutation"
path = "examples/formula_permutation.rs"

[[example]]
name = "pattern_pascal"
path = "examples/pattern_pascal.rs"

[[example]]
name = "prime_sieve_eratosthenes"
path = "examples/prime_sieve_eratosthenes.rs"

[[example]]
name = "prime_sieve_sundaram"
path = "examples/prime_sieve_sundaram.rs"

[[example]]
name = "sequence_arithmetic"
path = "examples/sequence_arithmetic.rs"

[[example]]
name = "sequence_factorial"
path = "examples/sequence_factorial.rs"

[[example]]
name = "sequence_fibonacci"
path = "examples/sequence_fibonacci.rs"

[[example]]
name = "sequence_geometric"
path = "examples/sequence_geometric.rs"

[[example]]
name = "sequence_lucas"
path = "examples/sequence_lucas.rs"

[[example]]
name = "sequence_recaman"
path = "examples/sequence_recaman.rs"

[[example]]
name = "sequence_sylvester"
path = "examples/sequence_sylvester.rs"

[[example]]
name = "sequence_tribonacci"
path = "examples/sequence_tribonacci.rs"

[[example]]
name = "structure_matrix"
path = "examples/structure_matrix.rs"

[lib]
crate-type = ["lib"]
edition = "2021"
name = "numberlab"
path = "src/lib.rs"

[package]
authors = ["indrajit"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms"]
description = "A collection of numerical algorithms"
documentation = "https://docs.rs/numberlab"
edition = "2021"
homepage = "https://eendroroy.github.io/numberlab"
keywords = ["math", "algorithms"]
license = "AGPL-3.0"
name = "numberlab"
readme = "README.md"
repository = "https://github.com/eendroroy/numberlab"
rust-version = "1.60.0"
version = "0.1.5"

[[test]]
name = "algorithm_factorization_test"
path = "tests/algorithm_factorization_test.rs"

[[test]]
name = "coordinate_cartesian_test"
path = "tests/coordinate_cartesian_test.rs"

[[test]]
name = "coordinate_polar_test"
path = "tests/coordinate_polar_test.rs"

[[test]]
name = "figurate_hexagonal_test"
path = "tests/figurate_hexagonal_test.rs"

[[test]]
name = "figurate_lazy_caterer_test"
path = "tests/figurate_lazy_caterer_test.rs"

[[test]]
name = "figurate_pentagonal_test"
path = "tests/figurate_pentagonal_test.rs"

[[test]]
name = "figurate_square_test"
path = "tests/figurate_square_test.rs"

[[test]]
name = "figurate_star_test"
path = "tests/figurate_star_test.rs"

[[test]]
name = "figurate_stella_octangula_test"
path = "tests/figurate_stella_octangula_test.rs"

[[test]]
name = "figurate_triangular_test"
path = "tests/figurate_triangular_test.rs"

[[test]]
name = "formula_arithmetic_test"
path = "tests/formula_arithmetic_test.rs"

[[test]]
name = "pattern_test"
path = "tests/pattern_test.rs"

[[test]]
name = "prime_sieve_test"
path = "tests/prime_sieve_test.rs"

[[test]]
name = "sequence_arithmetic_test"
path = "tests/sequence_arithmetic_test.rs"

[[test]]
name = "sequence_factorial_test"
path = "tests/sequence_factorial_test.rs"

[[test]]
name = "sequence_fibonacci_test"
path = "tests/sequence_fibonacci_test.rs"

[[test]]
name = "sequence_geometric_test"
path = "tests/sequence_geometric_test.rs"

[[test]]
name = "sequence_lucas_test"
path = "tests/sequence_lucas_test.rs"

[[test]]
name = "sequence_recaman_test"
path = "tests/sequence_recaman_test.rs"

[[test]]
name = "sequence_sylvester_test"
path = "tests/sequence_sylvester_test.rs"

[[test]]
name = "sequence_tribonacci_test"
path = "tests/sequence_tribonacci_test.rs"

[[test]]
name = "structure_matrix_test"
path = "tests/structure_matrix_test.rs"