Skip to content
Merged
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
11 changes: 5 additions & 6 deletions .fortls
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@
"src",
"tests"
],
"excl_suffixes": ["_skip.F90"],
"pp_suffixes": [".F90", ".inc", ".part"],
"excl_suffixes": ["_skip.F90", ".bk", ".ignore"],
"pp_suffixes": [".F90", ".inc", ".part", ".f90"],
"pp_defs": {},
"include_dirs": [
"/Users/vikassharma/.easifem/vscode/include/"
],
"include_dirs": [],
"ext_source_dirs": [],
"lowercase_intrinsics": false,
"debug_log": false
"debug_log": false,
"disable_diagnostics": false
}
17 changes: 17 additions & 0 deletions src/modules/easifemBase/src/easifemBase.F90
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
! This program is a part of EASIFEM library
! Copyright (C) 2020-2021 Vikas Sharma, Ph.D
!
! 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/>
!

MODULE easifemBase
USE BaseType
USE BaseMethod
Expand Down