Skip to content

Releases: issp-center-dev/StdFace

v1.0.1

09 Aug 05:15
Compare
Choose a tag to compare

Release Notes for v1.0.1

Overview

This release introduces a new option for enabling or disabling testing within the CMake build system. This enhancement provides more flexibility in controlling the testing process during the build.

Changes

CMakeLists.txt

  • Added: A new CMake option TestStdFace to control the inclusion of testing-related code.

    option(TestStdFace "Enable testing" ON)
    • Default Value: ON (Testing is enabled by default)
  • Conditional Testing: The testing code is now included conditionally based on the TestStdFace option.

    if (TestStdFace)
      enable_testing()
      add_subdirectory(test)
    endif()

Impact

  • Flexibility: Users now have the option to disable testing during the build process by setting TestStdFace to OFF.
  • Default Behavior: The default behavior remains unchanged; testing is enabled unless explicitly disabled.

v1.0

01 Jul 01:38
ab32f48
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.5...v1.0

v0.5

19 Jun 01:40
bfc57fb
Compare
Choose a tag to compare
v0.5 Pre-release
Pre-release

Merge following PRs

  • Add "gamma_y" for magnetic field in y-direction (#22 )
  • Add Hwave mode (#23 )
  • In standard mode, NMPTrans (modpara) is always -1 (#24 )
  • Ignore build folde (#26 )
  • mod default value of dt. (#29 )

v0.4

29 Nov 20:40
Compare
Choose a tag to compare
v0.4 Pre-release
Pre-release

Merge following PRs

  • Skip reading files wan90 mode (#16)
  • fix segfault when no argument is given. (#17)
  • Ignore make.sys. (#19)
  • exporting in wannier90-like format (#21)
    • Add UHFk mode in UHF version.

v0.3

19 Nov 17:40
9296776
Compare
Choose a tag to compare
v0.3 Pre-release
Pre-release

Merge following PRs

  • BugFix
    • Kondo+greenr2k : 伝導電子サイトのインデックスが間違っていた PR#10
  • cTPQ mode
    • cTPQ フラグとInitialVecTypeのデフォルト値 [PR#12] (#12)
    • Add cTPQ comment to sample calcmod.def [PR#13] (#14)
  • Others
    • add Scalapack, NGPU to keywords for HPhi [PR#13] (#13)

What's Changed

  • [BugFix] Kondo+greenr2k : 伝導電子サイトのインデックスが間違っていた by @mitsuaki1987 in #10
  • Develop by @tmisawa in #11
  • cTPQ フラグとInitialVecTypeのデフォルト値 by @mitsuaki1987 in #12
  • add Scalapack, NGPU to keywords for HPhi by @k-ido in #13
  • Add cTPQ comment to sample calcmod.def by @xrq-phys in #14

New Contributors

  • @k-ido made their first contribution in #13

Full Changelog: v0.2...v0.3