Skip to content
This repository has been archived by the owner on May 11, 2021. It is now read-only.

Commit

Permalink
Second public release of Athena++
Browse files Browse the repository at this point in the history
  • Loading branch information
felker committed May 24, 2018
1 parent 4cfc875 commit 77ea410
Show file tree
Hide file tree
Showing 311 changed files with 44,392 additions and 11,374 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,4 @@ meshtest.dat

# editor temp files
*~
*.swp
14 changes: 14 additions & 0 deletions CPPLINT.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# Don't search for additional CPPLINT.cfg in parent directories.
set noparent
headers=hpp
linelength=90
# Don't use 'SRC_' as the cpp header guard prefix
root=./src/
#extensions=hpp,cpp

# Disable and enable specific categories (filters eval from left to right)
filter=#+build/header_guard,+build/namespaces
filter=-readability/alt_tokens,-readability/casting,-readability/fn_size
filter=-runtime/references,-runtime/printf
filter=-whitespace,+whitespace/line_length,+whitespace/braces#,+whitespace/parens
# +build/include_alpha # only category disabled by default
13 changes: 10 additions & 3 deletions Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,12 @@

# Files for conditional compilation

PROBLEM_FILE = @PROBLEM_FILE@
COORDINATES_FILE = @COORDINATES_FILE@
EOS_FILE = @EOS_FILE@
PROBLEM_FILE = @PROBLEM_FILE@
RECONSTRUCT_FILE = @RECONSTRUCT_FILE@
RSOLVER_FILE = @RSOLVER_FILE@
RSOLVER_DIR = @RSOLVER_DIR@
HYDRO_INT_FILE = @HYDRO_INT_FILE@
MPIFFT_FILE = @MPIFFT_FILE@

# General compiler specifications

Expand All @@ -30,12 +29,18 @@ SRC_FILES := $(wildcard src/*.cpp) \
$(wildcard src/field/*.cpp) \
$(wildcard src/hydro/*.cpp) \
$(wildcard src/hydro/srcterms/*.cpp) \
$(wildcard src/hydro/hydro_diffusion/*.cpp) \
$(wildcard src/field/field_diffusion/*.cpp) \
src/hydro/rsolvers/$(RSOLVER_DIR)$(RSOLVER_FILE) \
$(wildcard src/mesh/*.cpp) \
$(wildcard src/outputs/*.cpp) \
$(wildcard src/reconstruct/*.cpp) \
$(wildcard src/task_list/*.cpp) \
$(wildcard src/utils/*.cpp) \
$(wildcard src/fft/*.cpp) \
$(wildcard src/multigrid/*.cpp) \
$(wildcard src/gravity/*.cpp) \
$(MPIFFT_FILE) \
src/pgen/$(PROBLEM_FILE) \
src/pgen/default_pgen.cpp
OBJ_DIR := obj/
Expand All @@ -49,6 +54,8 @@ VPATH := $(SRC_DIR)

all : dirs $(EXECUTABLE)

objs : dirs $(OBJ_FILES)

dirs : $(EXE_DIR) $(OBJ_DIR)

$(EXE_DIR):
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
athena
======
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)

Athena++ radiation MHD code
Loading

0 comments on commit 77ea410

Please sign in to comment.