forked from fortran-lang/minpack
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfpm.toml
78 lines (64 loc) · 1.53 KB
/
fpm.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
name = "minpack"
description = "Minpack includes software for solving nonlinear equations and nonlinear least squares problems"
homepage = "https://github.com/fortran-lang/minpack"
version = "2.0.0"
license = "MIT"
author = "minpack contributors"
maintainer = "@fortran-lang"
copyright = "Copyright (c) 2022 minpack contributors; Minpack Copyright Notice (1999) University of Chicago. All rights reserved"
categories = ["numerical"]
keywords = ["least squares", "linear equations", "nonlinear equations"]
[install]
library = true
[build]
auto-executables = false
auto-tests = false
auto-examples = false
[[test]]
name = "test_chkder"
source-dir = "test"
main = "test_chkder.f90"
[[test]]
name = "test_hybrd"
source-dir = "test"
main = "test_hybrd.f90"
[[test]]
name = "test_hybrj"
source-dir = "test"
main = "test_hybrj.f90"
[[test]]
name = "test_lmder"
source-dir = "test"
main = "test_lmder.f90"
[[test]]
name = "test_lmdif"
source-dir = "test"
main = "test_lmdif.f90"
[[test]]
name = "test_lmstr"
source-dir = "test"
main = "test_lmstr.f90"
[[example]]
name = "example_hybrd"
source-dir = "examples"
main = "example_hybrd.f90"
[[example]]
name = "example_hybrd1"
source-dir = "examples"
main = "example_hybrd1.f90"
[[example]]
name = "example_lmder1"
source-dir = "examples"
main = "example_lmder1.f90"
[[example]]
name = "example_lmdif1"
source-dir = "examples"
main = "example_lmdif1.f90"
[[example]]
name = "example_primes"
source-dir = "examples"
main = "example_primes.f90"
# [[test]]
# name = "c-test"
# source-dir = "test/api"
# main = "tester.c"