Skip to content

Commit

Permalink
Minor changes to docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Oct 2, 2023
1 parent b11170d commit 84be1f5
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@ pages = [
"Geometry" => "Geometry.md",
"MultiField" => "MultiField.md",
"Visualization" => "Visualization.md",
"Adaptivity" => "Adaptivity.md",
]


makedocs(;
modules=[GridapDistributed],
format=Documenter.HTML(),
pages=pages,
repo="https://github.com/gridap/GridapDistributed.jl/blob/{commit}{path}#L{line}",
sitename="GridapDistributed.jl",
authors="S. Badia <[email protected]>, A. F. Martin <alberto.martin@monash.edu>, F. Verdugo <[email protected]>",
authors="S. Badia <[email protected]>, A. F. Martin <alberto.f.martin@anu.edu.au>, F. Verdugo <[email protected]>",
)

deploydocs(;
Expand Down
1 change: 1 addition & 0 deletions src/Adaptivity.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ end
RedistributeGlue
Glue linking two distributions of the same mesh.
- `new_parts`: Array with the new part IDs (and comms)
- `old_parts`: Array with the old part IDs (and comms)
- `parts_rcv`: Array with the part IDs from which each part receives
Expand Down
3 changes: 2 additions & 1 deletion src/BlockPartitionedArrays.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@

"""
struct BlockPRange{A} <: AbstractUnitRange{Int}
"""
struct BlockPRange{A} <: AbstractUnitRange{Int}
ranges::Vector{PRange{A}}
Expand All @@ -25,6 +26,7 @@ function Base.getindex(a::BlockPRange,inds::Block{1})
end

"""
struct BlockPArray{V,T,N,A,B} <: BlockArrays.AbstractBlockArray{T,N}
"""
struct BlockPArray{V,T,N,A,B} <: BlockArrays.AbstractBlockArray{T,N}
blocks::Array{A,N}
Expand Down Expand Up @@ -361,4 +363,3 @@ function Base.materialize!(a::BlockPArray,b::BlockPBroadcasted)
map(Base.materialize!,blocks(a),blocks(b))
return a
end

1 change: 0 additions & 1 deletion src/MultiField.jl
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,6 @@ end

# SparseMatrixAssembler API

#! The following could be avoided if DistributedBlockSparseMatrixAssembler <: DistributedSparseMatrixAssembler
function FESpaces.symbolic_loop_matrix!(A,a::DistributedBlockSparseMatrixAssembler,matdata)
rows = get_rows(a)
cols = get_cols(a)
Expand Down

0 comments on commit 84be1f5

Please sign in to comment.