-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change license name to Bempp-rs developers * rename solvers -> bempp * rename solvers -> bempp * cargo fmt
- Loading branch information
Showing
43 changed files
with
129 additions
and
129 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
name: solvers-bem | ||
about: Create a issue relates to the solvers-bem crate | ||
name: bempp-bem | ||
about: Create a issue relates to the bempp-bem crate | ||
title: '' | ||
labels: solvers-bem | ||
labels: bempp-bem | ||
assignees: '' | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
name: solvers-element | ||
about: Create a issue relates to the solvers-element crate | ||
name: bempp-element | ||
about: Create a issue relates to the bempp-element crate | ||
title: '' | ||
labels: solvers-element | ||
labels: bempp-element | ||
assignees: '' | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
name: solvers-grid | ||
about: Create a issue relates to the solvers-grid crate | ||
name: bempp-grid | ||
about: Create a issue relates to the bempp-grid crate | ||
title: '' | ||
labels: solvers-grid | ||
labels: bempp-grid | ||
assignees: '' | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
--- | ||
name: solvers-quadrature | ||
about: Create a issue relates to the solvers-quadrature crate | ||
t--- | ||
name: bempp-quadrature | ||
about: Create a issue relates to the bempp-quadrature crate | ||
title: '' | ||
labels: solvers-quadrature | ||
labels: bempp-quadrature | ||
assignees: '' | ||
|
||
--- | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,25 +3,25 @@ | |
strict = [] | ||
|
||
[package] | ||
name = "solvers-element" | ||
name = "bempp-element" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Matthew Scroggs <[email protected]>"] | ||
description = "A library for the evaluation of finite element basis functions." | ||
license = "BSD-3-Clause" | ||
homepage = "https://github.com/rusty-solvers/solvers-element" | ||
repository = "https://github.com/rusty-solvers/solvers-element" | ||
homepage = "https://github.com/bempp/bempp-rs" | ||
repository = "https://github.com/bempp/bempp-rs" | ||
readme = "README.md" | ||
keywords = ["numerics"] | ||
categories = ["mathematics", "science"] | ||
|
||
[lib] | ||
name = "solvers_element" | ||
name = "bempp_element" | ||
crate-type = ["lib", "cdylib"] | ||
|
||
[dependencies] | ||
solvers-tools = { path = "../tools"} | ||
solvers-traits = { path = "../traits" } | ||
bempp-tools = { path = "../tools"} | ||
bempp-traits = { path = "../traits" } | ||
paste = "1.*" | ||
libc = "0.2" | ||
approx = "0.5" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,26 +3,26 @@ | |
strict = [] | ||
|
||
[package] | ||
name = "solvers-fmm" | ||
name = "bempp-fmm" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Srinath Kailasa <[email protected]>"] | ||
description = "FMM in Rust" | ||
license = "BSD-3-Clause" | ||
homepage = "https://github.com/rusty-solvers/solvers" | ||
repository = "https://github.com/rusty-solvers/solvers" | ||
homepage = "https://github.com/bempp/bempp-rs" | ||
repository = "https://github.com/bempp/bempp-rs" | ||
readme = "README.md" | ||
keywords = ["numerics"] | ||
categories = ["mathematics", "science"] | ||
|
||
[lib] | ||
name = "solvers_fmm" | ||
name = "bempp_fmm" | ||
crate-type = ["lib", "cdylib"] | ||
|
||
[dependencies] | ||
solvers-tools = { path = "../tools" } | ||
solvers-tree = { path = "../tree" } | ||
solvers-traits = { path = "../traits" } | ||
bempp-tools = { path = "../tools" } | ||
bempp-tree = { path = "../tree" } | ||
bempp-traits = { path = "../traits" } | ||
approx = "0.5" | ||
cauchy = "0.4.*" | ||
itertools = "0.10" | ||
|
@@ -32,4 +32,4 @@ ndarray = { version = "*", features = ["rayon", "blas"]} | |
blas-src = { version = "*", features = ["openblas"] } | ||
openblas-src = { version = "*", features = ["cblas", "system"] } | ||
ndarray-linalg = { version = "*", features = ["openblas-system"] } | ||
float-cmp = "0.9.0" | ||
float-cmp = "0.9.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,25 +3,25 @@ | |
strict = [] | ||
|
||
[package] | ||
name = "solvers-grid" | ||
name = "bempp-grid" | ||
version = "0.1.0" | ||
edition = "2021" | ||
authors = ["Matthew Scroggs <[email protected]>"] | ||
description = "A library for the evaluation of finite element basis functions." | ||
license = "BSD-3-Clause" | ||
homepage = "https://github.com/rusty-solvers/solvers" | ||
repository = "https://github.com/rusty-solvers/solvers" | ||
homepage = "https://github.com/bempp/bempp-rs" | ||
repository = "https://github.com/bempp/bempp-rs" | ||
readme = "README.md" | ||
keywords = ["numerics"] | ||
categories = ["mathematics", "science"] | ||
|
||
[lib] | ||
name = "solvers_grid" | ||
name = "bempp_grid" | ||
crate-type = ["lib", "cdylib"] | ||
|
||
[dependencies] | ||
solvers-tools = { path = "../tools"} | ||
solvers-traits = { path = "../traits"} | ||
solvers-element = { path = "../element"} | ||
bempp-tools = { path = "../tools"} | ||
bempp-traits = { path = "../traits"} | ||
bempp-element = { path = "../element"} | ||
approx = "0.5" | ||
itertools = "0.10" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.