Skip to content
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

Fixed links to docs #91

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions deps/build.jl
Original file line number Diff line number Diff line change
Expand Up @@ -102,19 +102,19 @@ open(joinpath(@__DIR__,"PetscDataTypes.jl"),"w") do f
println(f)
println(f,:("\"\"\""))
println(f, "Julia alias for `PetscReal` C type.\n")
println(f, "See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscReal.html).")
println(f, "See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscReal.html).")
println(f,:("\"\"\""))
println(f,:(const PetscReal = $(PetscReal)))
println(f)
println(f,:("\"\"\""))
println(f, "Julia alias for `PetscScalar` C type.\n")
println(f, "See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscScalar.html).")
println(f, "See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscScalar.html).")
println(f,:("\"\"\""))
println(f,:(const PetscScalar = $(PetscScalar)))
println(f)
println(f,:("\"\"\""))
println(f, "Julia alias for `PetscInt` C type.\n")
println(f, "See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscInt.html).")
println(f, "See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscInt.html).")
println(f,:("\"\"\""))
println(f,:(const PetscInt = $(PetscInt)))
end
Expand Down
10 changes: 5 additions & 5 deletions src/Config.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"""
Julia alias to `PetscErrorCode` C type.

See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscErrorCode.html).
See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscErrorCode.html).
"""
const PetscErrorCode = Cint

"""
Julia alias to `PetscBool` C enum.

See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscBool.html).
See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscBool.html).
"""
@enum PetscBool PETSC_FALSE PETSC_TRUE

"""
Julia alias to `PetscDataType` C enum.

See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscDataType.html).
See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscDataType.html).
"""
@enum PetscDataType begin
PETSC_DATATYPE_UNKNOWN = 0
Expand All @@ -42,7 +42,7 @@ end
"""
PetscDataTypeFromString(name,ptype,found)

See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscDataTypeFromString.html).
See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscDataTypeFromString.html).
"""
function PetscDataTypeFromString(name,ptype,found)
ccall(
Expand All @@ -54,7 +54,7 @@ end
"""
PetscDataTypeGetSize(ptype,size)

See [PETSc manual](https://www.mcs.anl.gov/petsc/petsc-current/docs/manualpages/Sys/PetscDataTypeGetSize.html).
See [PETSc manual](https://petsc.org/release/manualpages/Sys/PetscDataTypeGetSize.html).
"""
function PetscDataTypeGetSize(ptype,size)
ccall(
Expand Down
Loading