-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from bmxam/dev
Redesign API + use finalizers
- Loading branch information
Showing
30 changed files
with
2,604 additions
and
1,469 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# https://github.com/domluna/JuliaFormatter.jl | ||
|
||
# Annotates fields in a type definitions with ::Any if no type annotation is provided | ||
annotate_untyped_fields_with_any = false | ||
|
||
# Transforms a short function definition to a long function definition if the short | ||
# function definition exceeds the maximum margin. | ||
short_to_long_function_def = true | ||
|
||
# Transforms a long function definition to a short function definition if the short | ||
# function definition does not exceed the maximum margin. | ||
long_to_short_function_def = true | ||
|
||
# Format code docstrings with the same options used for the code source. | ||
format_docstrings = true | ||
|
||
# If true, Markdown files are also formatted. Julia code blocks will be formatted | ||
# in addition to the Markdown being normalized. | ||
format_markdown = true | ||
|
||
# If true, whitespace is added for binary operations in indices | ||
whitespace_ops_in_indices = true | ||
|
||
# If true, superfluous newlines will be removed | ||
remove_extra_newlines = true |
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,13 +1,14 @@ | ||
name = "PetscWrap" | ||
uuid = "5be22e1c-01b5-4697-96eb-ef9ccdc854b8" | ||
authors = ["bmxam <[email protected]>"] | ||
version = "0.1.5" | ||
version = "0.2.0" | ||
|
||
[deps] | ||
Libdl = "8f399da3-3557-5675-b5ff-fb832c97cbdb" | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[compat] | ||
MPI = "0.16, 0.17, 0.18, 0.19" | ||
julia = "1.5" | ||
MPI = "0.20" | ||
julia = "1.5, 1.6, 1.7, 1.8" |
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.