History log of /petsc/src/dm/impls/moab/dmmbfem.cxx (Results 51 – 75 of 82)
Revision Date Author Comments
# f482f063 21-Jun-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/checkstack' into 'main'

Check Push/Pop

See merge request petsc/petsc!4077


# 362febee 10-Jun-2021 Stefano Zampini <stefano.zampini@gmail.com>

PetscStack : check for correct push/pop

Enforce checkstack for CI jobs
Fixes from testsuite


# a8cf78f8 24-May-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2021-05-16/fix-double-lines' into 'main'

Fix typos in source

See merge request petsc/petsc!3984


# 4e278199 16-May-2021 Barry Smith <bsmith@mcs.anl.gov>

Remove all double blank lines from source

Commit-type: petsc-style
/2h


# 16924cb1 26-Aug-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-08-16/fix-source-formatting' into 'master'

Turn on checkbadSource test to generate an error when found; fix all source code that causes errors

See merge request petsc/petsc

Merge branch 'barry/2020-08-16/fix-source-formatting' into 'master'

Turn on checkbadSource test to generate an error when found; fix all source code that causes errors

See merge request petsc/petsc!3064

show more ...


# 2da392cc 17-Aug-2020 Barry Smith <bsmith@mcs.anl.gov>

Turn on checkbadSource test to generate an error when found; fix all source code that causes errors

Commit-type: portability-fix, testing-fix, style-fix, feature, maintainability
/spend 1.5h


# 863deefa 13-Aug-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# ae8c65b1 13-Aug-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-08-09/non-ascii-source-error' into 'maint'

Non-ASCII characters in source should be an immediate error, not allowed in master

See merge request petsc/petsc!3036


# 110fc3b0 10-Aug-2020 Barry Smith <bsmith@mcs.anl.gov>

Non-ASCII characters in source should be an immediate error, not allowed in master

I wasted a huge amount of time with Python 3 and difficulties reading files with stdin and friends
due to non-ASCII

Non-ASCII characters in source should be an immediate error, not allowed in master

I wasted a huge amount of time with Python 3 and difficulties reading files with stdin and friends
due to non-ASCII characters in the source

Commit-type: error-checking, portability-fix, testing-fix, style-fix, feature
/spend 5h

show more ...


# 713946ae 05-Mar-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'tisaac/feature-unify-quadrature' into 'master'

Unify Jacobi polynomial based computations in PetscDT

See merge request petsc/petsc!2574


# e6a796c3 28-Feb-2020 Toby Isaac <tisaac@cc.gatech.edu>

Rename PetscDTGaussJacobiQuadrature to PetscDTStroudConicalQuadrature and consolidate internal quadrature calculations

Revert incorrectly changed quadrature in dmmbfem.cxx


# a09a5412 22-Jan-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/feature-hpddm-cleanup' into 'master'

HPDDM cleanup

See merge request petsc/petsc!2434


# cab5ea25 18-Jan-2020 Pierre Jolivet <pierre.jolivet@enseeiht.fr>

General PETSc fixes

* make generatefortranstubs.py handle .cxx
* bump HPDDM version + minor hypre cleaning


# b2a1bb3a 13-Dec-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/knepley/feature-dt-quad-classid'

Knepley/feature dt quad classid

See merge request petsc/petsc!2355


# 78dc7ee3 07-Dec-2019 Matthew G. Knepley <knepley@gmail.com>

Moab: Fix quadrature check


# a8158fb5 14-Jul-2019 Karl Rupp <me@karlrupp.net>

Merge branch 'gropp/doc-fixes-1' [PR #1838]


# 57a5760d 02-Jul-2019 William Gropp <wgropp@illinois.edu>

Merge from doc-fixes branch


# a2b725a8 27-Jun-2019 William Gropp <wgropp@illinois.edu>

Fixes for doctext update


# 89583661 21-Jun-2019 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/barry/add-petscarrayxxx-ops' [PR #1771]


# 580bdb30 07-Jun-2019 Barry Smith <bsmith@mcs.anl.gov>

Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms

Replace a couple multi-mallocs with a single malloc
Replace backwards loops in MatSetValues_*()

Add PetscArraycmp(), PetscArraycpy(), PetscArrayzero(), PetscArraymove(), update code to use new forms

Replace a couple multi-mallocs with a single malloc
Replace backwards loops in MatSetValues_*() with PetscArraymove()

Commit-type: style-fix, feature

show more ...


# fa54792a 29-May-2019 Patrick Sanan <patrick.sanan@gmail.com>

Merged in psanan/man-pages-remove-keywords (pull request #1717)

Man pages: Remove .keywords fields

Approved-by: BarryFSmith <bsmith@mcs.anl.gov>


# bfcb38ea 27-May-2019 Patrick Sanan <patrick.sanan@gmail.com>

Man pages: remove .keywords: fields

This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20),
but it doesn't seem to be unif

Man pages: remove .keywords: fields

This field is recognized by doctext from Sowing (http://wgropp.cs.illinois.edu/projects/software/sowing/doctext/node20.htm#Node20),
but it doesn't seem to be uniformly used or maintained.

Thus, remove all .keywords: fields, and a following blank line, if present.

This is accomplished with GNU sed (gsed on OS X), with the following commands.
*Warning* that this type of command can corrupt a .git directory,
so be cautious in reusing or modifying these commands. They first look
for and delete matching lines with a following line consisting of only whitespace,
and then delete any remaining matching lines.

find src/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} +
find src/ -type f -exec gsed -i '/keywords:/d' {} +
find include/ -type f -exec gsed -i '/keywords:/ {N; /\n\s*$/d}' {} +
find include/ -type f -exec gsed -i '/keywords:/d' {} +

Hints on the sed command obtained from: https://unix.stackexchange.com/questions/100754/how-to-delete-a-specific-line-and-the-following-blank-line-using-gnu-sed

show more ...


# edc382c3 25-Sep-2017 Satish Balay <balay@mcs.anl.gov>

doc: fixes


# 97b73a88 19-Sep-2017 Satish Balay <balay@mcs.anl.gov>

doc fixes:

Reported-by: Stefano Zampini <stefano.zampini@gmail.com>


# a613508e 19-Sep-2017 Satish Balay <balay@mcs.anl.gov>

more remove __FUNCT__


1234