-
Notifications
You must be signed in to change notification settings - Fork 9
switch to SparseConnectivityTracer and DifferentiationInterface #78
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
chmerdon
wants to merge
6
commits into
master
Choose a base branch
from
chmerdon/diffinterface
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
3b0dd51
switched from SparseDiffTools to SparseConnectivityTracer and Differe…
e1c9e43
fixed wrong size of jacobian
6c87755
fixed sparsity pattern issue
c5b24b6
sparsity patterns for kernels of BilinearOperator now also done by Sp…
685e199
Merge branch 'master' into chmerdon/diffinterface
chmerdon cfe4d7e
fixed sparsity_pattern in NonlinearOperator, added news packages to d…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,11 +1,13 @@ | ||
name = "ExtendableFEM" | ||
uuid = "a722555e-65e0-4074-a036-ca7ce79a4aed" | ||
version = "1.4" | ||
version = "1.5" | ||
authors = ["Christian Merdon <[email protected]>", "Patrick Jaap <[email protected]>"] | ||
|
||
[deps] | ||
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" | ||
CommonSolve = "38540f10-b2f7-11e9-35d8-d573e4eb0ff2" | ||
DiffResults = "163ba53b-c6d8-5494-b064-1a9d43ac40c5" | ||
DifferentiationInterface = "a0c0ee7d-e4b9-4e03-894e-1c5f64a51d63" | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
ExtendableFEMBase = "12fb9182-3d4c-4424-8fd1-727a0899810c" | ||
ExtendableGrids = "cfc395e8-590f-11e8-1f13-43a2532b2fa8" | ||
|
@@ -17,15 +19,17 @@ LinearSolve = "7ed4a6bd-45f5-4d41-b270-4a48e9bafcae" | |
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462" | ||
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | ||
SparseDiffTools = "47a9eef4-7e08-11e9-0b38-333d64bd3804" | ||
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" | ||
SparseConnectivityTracer = "9f842d2f-2579-4b1d-911e-f412cf18a3f5" | ||
SparseMatrixColorings = "0a514795-09f3-496d-8182-132a7b665d35" | ||
TimerOutputs = "a759f4b9-e2f1-59dc-863e-4aeb61b1ea8f" | ||
UnicodePlots = "b8865327-cd53-5732-bb35-84acbb429228" | ||
|
||
[compat] | ||
ADTypes = "1.16.0" | ||
Aqua = "0.8" | ||
CommonSolve = "0.2" | ||
DiffResults = "1" | ||
DifferentiationInterface = "0.7.4" | ||
DocStringExtensions = "0.8,0.9" | ||
ExampleJuggler = "2.2.1" | ||
ExplicitImports = "1" | ||
|
@@ -41,10 +45,11 @@ Metis = "1.5.0" | |
OrdinaryDiffEqRosenbrock = "1.4.0" | ||
OrdinaryDiffEqSDIRK = "1.2.0" | ||
Printf = "1.9" | ||
SciMLBase = "2.6" | ||
SciMLBase = "2.99.0" | ||
SimplexGridFactory = "2.4.0" | ||
SparseArrays = "1.9" | ||
SparseDiffTools = "^1.19,2" | ||
SparseConnectivityTracer = "1.0.0" | ||
SparseMatrixColorings = "0.4.21" | ||
StaticArrays = "1.9.13" | ||
Symbolics = "4.2,5,6" | ||
Test = "1" | ||
|
@@ -64,9 +69,10 @@ OrdinaryDiffEqRosenbrock = "43230ef6-c299-4910-a778-202eb28ce4ce" | |
OrdinaryDiffEqSDIRK = "2d112036-d095-4a1e-ab9a-08536f3ecdbf" | ||
SimplexGridFactory = "57bfcd06-606e-45d6-baf4-4ba06da0efd5" | ||
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7" | ||
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
TetGen = "c5d3f3f7-f850-59f6-8a2e-ffc6dc1317ea" | ||
Triangulate = "f7e6ffb2-c36d-4f8f-a77e-16e897189344" | ||
|
||
[targets] | ||
test = ["Aqua", "ExampleJuggler", "ExplicitImports", "IncompleteLU", "Metis", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "SimplexGridFactory", "StaticArrays", "Test", "TetGen", "Triangulate"] | ||
test = ["Aqua", "ExampleJuggler", "ExplicitImports", "IncompleteLU", "Metis", "OrdinaryDiffEqRosenbrock", "OrdinaryDiffEqSDIRK", "SimplexGridFactory", "StaticArrays", "Symbolics", "Test", "TetGen", "Triangulate"] |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 |
---|---|---|
|
@@ -8,6 +8,7 @@ using Metis | |
using Aqua | ||
using Triangulate | ||
using SimplexGridFactory | ||
using Symbolics | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why add symbolic here? |
||
|
||
include("test_dgblf.jl") | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Adding Symbolics as a test dependency contradicts the PR's purpose of removing Symbolics as a main dependency. Consider refactoring tests to use the new SparseConnectivityTracer instead.
Copilot uses AI. Check for mistakes.