flexiblesusy is hosted by Hepforge, IPPP Durham

Development resources

The development of FlexibleSUSY takes place at github.

Repository

To clone the repository run

git clone https://github.com/FlexibleSUSY/FlexibleSUSY.git

Nightly tests

We are running nightly tests on the RWTH computer cluster. Test results

Mailing lists

C++ source code indentation

When you are writing FlexibleSUSY extensions, please use the stroustrup style with 3 indentation spaces (no tabs).

ClangFormat ressource file: .clang-format (preferred)

clang-format -style=file [files]

Emacs configuration:

(defun my-c-mode-common-hook ()
   (setq c-basic-offset 3)
   (setq c-indent-level 3)
   (setq c-default-style "stroustrup")
   (c-set-offset 'innamespace 0)
   (setq indent-tabs-mode nil)
   )
(add-hook 'c-mode-common-hook 'my-c-mode-common-hook)

Astyle ressource file: astylerc

astyle --options=astylerc [files]