Skip to content
Snippets Groups Projects

Split function_space_impls.py into smaller files

Merged Marcus Mohr requested to merge mohr/split-function_space_impls into main
All threads resolved!
Compare and
11 files
+ 1333
35
Preferences
Compare changes
Files
11
 
# HyTeG Operator Generator
 
# Copyright (C) 2024 HyTeG Team
 
#
 
# This program is free software: you can redistribute it and/or modify
 
# it under the terms of the GNU General Public License as published by
 
# the Free Software Foundation, either version 3 of the License, or
 
# (at your option) any later version.
 
#
 
# This program is distributed in the hope that it will be useful,
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 
# GNU General Public License for more details.
 
#
 
# You should have received a copy of the GNU General Public License
 
# along with this program. If not, see <https://www.gnu.org/licenses/>.
 
 
__all__ = [
 
"function_space_impl_base",
 
"function_space_impl_factory",
 
"p0_space_impl",
 
"p1_space_impl",
 
"p2_space_impl",
 
"n1e1_space_impl",
 
]