Skip to content

Commit

Permalink
Defaults and bug-fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pprcht committed Oct 2, 2023
1 parent eecb0a9 commit 62b735c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion config/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ check_minimal_compiler_version("Fortran" "${fortran_minimal_versions}")

option(WITH_OpenMP "Enable support for shared memory parallelisation with OpenMP" TRUE)

option(WITH_TBLITE "Enable build with the lightweight tight-binding library" FALSE)
option(WITH_TBLITE "Enable build with the lightweight tight-binding library" TRUE)

option(WITH_TOMLF "Enable build with toml-f support" TRUE)

Expand Down
2 changes: 1 addition & 1 deletion meson_options.txt
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ option(
option(
'WITH_TBLITE',
type: 'boolean',
value: false,
value: true,
description: 'build with tblite integration',
)
option(
Expand Down
1 change: 1 addition & 0 deletions src/calculator/lwoniom.F90
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ subroutine ONIOM_get_fraggrad(ONIOM,F,gradient,highlow,energy)
integer,intent(in) :: highlow
real(wp),intent(out),optional :: energy
integer :: natf,root_id
gradient = 0.0_wp
#ifdef WITH_LWONIOM
if(F > ONIOM%nfrag ) error stop 'ONIOM fragment mismatch'
select case(highlow)
Expand Down
1 change: 1 addition & 0 deletions src/classes.f90
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,7 @@ module crest_data
logical :: esort = .false. !> legacy option in old cregen
logical :: ext !> external
logical :: extLFER = .false. !> read in external LFER parameters
logical :: FINAL_GFN2_OPT = .false.
logical :: fullcre = .false. !> calculate exact rotamer degeneracies
logical :: gbsa !> use gbsa
logical :: gcmultiopt !> 2 level optimization for GC in V2
Expand Down

0 comments on commit 62b735c

Please sign in to comment.