Skip to content

Commit

Permalink
Remove rogue unneded funs
Browse files Browse the repository at this point in the history
  • Loading branch information
ericneiva committed Jul 8, 2024
1 parent 4b1c355 commit 85978e3
Showing 1 changed file with 0 additions and 16 deletions.
16 changes: 0 additions & 16 deletions src/Distributed/DistributedAgFEM.jl
Original file line number Diff line number Diff line change
Expand Up @@ -525,22 +525,6 @@ function cell_ldof_to_mdof(
map(cell_ldof_to_mdof,spaces,cell_to_cellin)
end

function _dof_to_DOF(dof,n_fdofs)
if dof > 0
DOF = dof
else
DOF = n_fdofs - dof
end
end

function _DOF_to_dof(DOF,n_fdofs)
if DOF > n_fdofs
dof = -(DOF-n_fdofs)
else
dof = DOF
end
end

function cell_ldof_to_mdof(
space::FESpaceWithLinearConstraints,
cell_to_cellin::AbstractVector)
Expand Down

0 comments on commit 85978e3

Please sign in to comment.