-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
21 additions
and
21 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
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,4 +1,4 @@ | ||
name = "SuperLU_Base" | ||
name = "SuperLUBase" | ||
uuid = "79fc8b2a-9fec-41f5-a0c4-660a4203283a" | ||
authors = ["Raye Kimmerer <[email protected]>"] | ||
version = "0.1.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# SuperLU_Base | ||
# SuperLUBase | ||
|
||
[![Build Status](https://github.com/Wimmerer/SuperLU_Base.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Wimmerer/SuperLU_Base.jl/actions/workflows/CI.yml?query=branch%3Amain) | ||
[![Build Status](https://github.com/Wimmerer/SuperLUBase.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/Wimmerer/SuperLUBase.jl/actions/workflows/CI.yml?query=branch%3Amain) | ||
|
||
Common struct, function, and constant definitions for SuperLU libraries. |
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,3 +1,3 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
SuperLU_Base = "79fc8b2a-9fec-41f5-a0c4-660a4203283a" | ||
SuperLUBase = "79fc8b2a-9fec-41f5-a0c4-660a4203283a" |
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,16 +1,16 @@ | ||
using SuperLU_Base | ||
using SuperLUBase | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(SuperLU_Base, :DocTestSetup, :(using SuperLU_Base); recursive=true) | ||
DocMeta.setdocmeta!(SuperLUBase, :DocTestSetup, :(using SuperLUBase); recursive=true) | ||
|
||
makedocs(; | ||
modules=[SuperLU_Base], | ||
modules=[SuperLUBase], | ||
authors="Raye Kimmerer <[email protected]>", | ||
repo="https://github.com/Wimmerer/SuperLU_Base.jl/blob/{commit}{path}#{line}", | ||
sitename="SuperLU_Base.jl", | ||
repo="https://github.com/Wimmerer/SuperLUBase.jl/blob/{commit}{path}#{line}", | ||
sitename="SuperLUBase.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://Wimmerer.github.io/SuperLU_Base.jl", | ||
canonical="https://Wimmerer.github.io/SuperLUBase.jl", | ||
edit_link="main", | ||
assets=String[], | ||
), | ||
|
@@ -20,6 +20,6 @@ makedocs(; | |
) | ||
|
||
deploydocs(; | ||
repo="github.com/Wimmerer/SuperLU_Base.jl", | ||
repo="github.com/Wimmerer/SuperLUBase.jl", | ||
devbranch="main", | ||
) |
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,14 +1,14 @@ | ||
```@meta | ||
CurrentModule = SuperLU_Base | ||
CurrentModule = SuperLUBase | ||
``` | ||
|
||
# SuperLU_Base | ||
# SuperLUBase | ||
|
||
Documentation for [SuperLU_Base](https://github.com/Wimmerer/SuperLU_Base.jl). | ||
Documentation for [SuperLUBase](https://github.com/Wimmerer/SuperLUBase.jl). | ||
|
||
```@index | ||
``` | ||
|
||
```@autodocs | ||
Modules = [SuperLU_Base] | ||
Modules = [SuperLUBase] | ||
``` |
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,4 +1,4 @@ | ||
module SuperLU_Base | ||
module SuperLUBase | ||
|
||
using SparseBase | ||
using SparseBase: nstored | ||
|
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,6 +1,6 @@ | ||
using SuperLU_Base | ||
using SuperLUBase | ||
using Test | ||
|
||
@testset "SuperLU_Base.jl" begin | ||
@testset "SuperLUBase.jl" begin | ||
# Write your tests here. | ||
end |
adbac96
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.
@JuliaRegistrator register()
adbac96
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.
Registration pull request created: JuliaRegistries/General/85820
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: