| 618b937e | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Travis - error on Clang tidy issues |
| 535cb1f6 | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Style - use component array for DMAddBoundary in navierstokes |
| 8f8a8c7b | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Travis - add make style check |
| 0d4737c7 | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
PETSc - drop unused struct members in sphere example |
| 2dde2f02 | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Style - fix function indentation for navierstokes |
| ce41076e | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Style - fix pointer alignment for setupsphere |
| 9a00868b | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
make style |
| e0fb02d6 | 11-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Style - add NOPAD directive to fix make style again |
| 4bf89169 | 11-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #469 from CEED/jed/doc-examples
Jed/doc examples |
| fb10b817 | 11-Mar-2020 |
valeriabarra <valeriabarra21@gmail.com> |
Add citation and bib info |
| 4cecb402 | 11-Mar-2020 |
valeriabarra <valeriabarra21@gmail.com> |
Homogenize all section headers style to 40 chars |
| b3e3d9dd | 11-Mar-2020 |
valeriabarra <valeriabarra21@gmail.com> |
Use consistent section headers style
This is not only for consistency sake, but it also allows for easy visualization of section breaks |
| 08fade8c | 11-Mar-2020 |
valeriabarra <valeriabarra21@gmail.com> |
Slightly improve doc of bpssphere |
| 61608365 | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Multigrid - create fineLevel = numLevels - 1 variable for readability |
| ac4340cf | 11-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
doc: expand exposition on coordinate transformations and metric tensors
Simplify explicit pseudoinverse calculation in bpssphere setup. |
| 16140fde | 11-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
Merge pull request #473 from CEED/jeremy/restriction-doc
Restriction - reorder ceed-elemrestriction.c for Doc |
| a97643b0 | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Multigrid - use one mat shell for prolong/restrict |
| ce74dcef | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
PETSc - set GET_DIAGONAL for bps |
| 5e81177d | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Multigrid - simplify diagonal computation logic |
| 483f8b0d | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
PETSc - simplify calls to gather/scatter |
| a681ae63 | 10-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
Restriction -reorder ceed-.l.mrestriction.c to get correct documentation grouping |
| 15ce0ef0 | 06-Mar-2020 |
jeremylt <jeremy.thompson@colorado.edu> |
PETSc - convert multigrid example to use GAMG on coarse solve |
| b0ab70dd | 10-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
make: revise configure target
make configure now only caches non-default variables, identified by whether they are simple (set with :=, as in config.mk) or originate from the command line. Usage is
make: revise configure target
make configure now only caches non-default variables, identified by whether they are simple (set with :=, as in config.mk) or originate from the command line. Usage is similar to before, but should be less fragile/simpler to edit, and support setting more things.
This includes saving OPT, superseding PR #422.
Reported-by: Veselin Dobrev <dobrev@llnl.gov>
show more ...
|
| 7bcc1ce4 | 10-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
make: print-% target also mentions the flavor (simple vs recursive)
Simple variables are set with := and expanded eagerly. Recursive variables are set with = and expanded in the context of the targ
make: print-% target also mentions the flavor (simple vs recursive)
Simple variables are set with := and expanded eagerly. Recursive variables are set with = and expanded in the context of the target.
show more ...
|
| 4c7bdded | 10-Mar-2020 |
Jed Brown <jed@jedbrown.org> |
make: use target-specific CPPFLAGS for -I and -D for all languages
Avoids redundancy and simplifies the job of setting CFLAGS, NVCCFLAGS, etc. |