mirror of https://github.com/fredrikekre/HYPRE.jl
Julia interface to hypre linear solvers (https://github.com/hypre-space/hypre)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
469 B
21 lines
469 B
# SPDX-License-Identifier: MIT |
|
|
|
module Internals |
|
|
|
function assemble_matrix end |
|
function assemble_vector end |
|
function check_n_rows end |
|
function copy_check end |
|
function get_comm end |
|
function get_proc_rows end |
|
function safe_finalizer end |
|
function set_options end |
|
function set_precond end |
|
function set_precond_defaults end |
|
function setup_func end |
|
function solve_func end |
|
function to_hypre_data end |
|
|
|
const HYPRE_OBJECTS = WeakKeyDict{Any, Nothing}() |
|
|
|
end # module Internals
|
|
|