History log of /petsc/src/sys/objects/options.c (Results 126 – 150 of 919)
Revision Date Author Comments
# 48a4410e 29-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

Tell clang-format to treat khash_t as a typename


# 061e922f 22-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jacobf/2022-09-21/2-bike-2-shed' into 'main'

Feature: Bicycle Storage Facility 2

See merge request petsc/petsc!5661


# d71ae5a4 21-Sep-2022 Jacob Faibussowitsch <jacob.fai@gmail.com>

source code format changes due to .clang-format changes


# eea86af3 05-Sep-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-23/fix-sys-man' into 'main'

Fix up all manual pages in src/sys directory

See merge request petsc/petsc!5559


# 811af0c4 24-Aug-2022 Barry Smith <bsmith@mcs.anl.gov>

Fix up all manual pages in src/sys directory

Commit-type: documentation
/spend 10h


# f0af967e 29-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-style-one-liners' into 'main'

Remove braces from one-liners w/o PetscCall()

See merge request petsc/petsc!5561


# ad540459 29-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Remove braces from one-liners w/o PetscCall()


# 38f67375 27-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-style-one-liners' into 'main'

Remove braces from one-liners

See merge request petsc/petsc!5557


# 48a46eb9 27-Aug-2022 Pierre Jolivet <pierre@joliv.et>

Remove braces from one-liners


# 58d68138 23-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-08-21/clang-format-source' into 'main'

format repository with clang-format

See merge request petsc/petsc!5541


# 9371c9d4 22-Aug-2022 Satish Balay <balay@mcs.anl.gov>

clang-format: convert PETSc sources to comply with clang-format


# cdc546e2 09-Aug-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-07-25/print-warning-unused-options-on-error' into 'main'

Print unused options when output error message

See merge request petsc/petsc!5473


# f4bc716f 25-Jul-2022 Barry Smith <bsmith@mcs.anl.gov>

Print unused options when output error message

Commit-type: error-checking, feature
/spend 15m
Reported-by: Victor Eijkhout <eijkhout@tacc.utexas.edu>


# bda77271 20-Jul-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-06-24/linenumbers-petscstack' into 'main'

Fixes/improvements for PETSc stack handling

See merge request petsc/petsc!5368


# e77caa6d 28-Jun-2022 Barry Smith <bsmith@mcs.anl.gov>

Rename PetscStackCallExternalNoErrorCode to PetscStackCallExternalVoid

I tried to rebase this into the commit that introduced PetscStackCallExternalNoErrorCode but that produced a mass
of bad merges

Rename PetscStackCallExternalNoErrorCode to PetscStackCallExternalVoid

I tried to rebase this into the commit that introduced PetscStackCallExternalNoErrorCode but that produced a mass
of bad merges; I am not sure why, so this stands along. Annoying for code review but bisection will work which
is the important thing.

Commit-type: housekeeping
/spend 2m
Reported-by: Stefano Zampini

show more ...


# 660278c0 26-Jun-2022 Barry Smith <bsmith@mcs.anl.gov>

Add PETSc CI mode to allow better handling of errors and system dependent output when running in test harness

-petsc_ci - automatically set for all runs in test harness

-petsc_ci_portable_error_out

Add PETSc CI mode to allow better handling of errors and system dependent output when running in test harness

-petsc_ci - automatically set for all runs in test harness

-petsc_ci_portable_error_output - ensures all error messages (when possible are system and compiler information),
should be only used in tests that are explicitly testing the error handling

This allows proper comparisons of runs on different machines and when errors are intentionally triggered to test error handling

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

show more ...


# 44e5f0e3 29-Jun-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'wence/petsc-check-do-while' into 'main'

Wrap PetscCheck and PetscAssert in do { } while (0)

Closes #1199

See merge request petsc/petsc!5291


# f7d195e4 28-May-2022 Lawrence Mitchell <lawrence@wence.uk>

Wrap PetscCheck and PetscAssert in do { } while (0)

These macros look like functions, so they should behave like
functions. Fix up the resulting invalid syntax due to the previous
behaviour of these

Wrap PetscCheck and PetscAssert in do { } while (0)

These macros look like functions, so they should behave like
functions. Fix up the resulting invalid syntax due to the previous
behaviour of these macros being "if (...)
statement_without_semicolon". Fixes #1199.

show more ...


# 145e6476 23-Jun-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-06-13/make-one-line-if-call' into 'main'

Change if () { PetscCall() } three liner to one liner

See merge request petsc/petsc!5344


# 1baa6e33 14-Jun-2022 Barry Smith <bsmith@mcs.anl.gov>

Change if () { PetscCall() } three liner and friends to one liners

for i in `git ls-files | grep "\.[ch]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ ]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\

Change if () { PetscCall() } three liner and friends to one liners

for i in `git ls-files | grep "\.[ch]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ ]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\$[ ]*PetscCall(\([- ._+=a-z0-9A-Z>*,()]*);\)\$[ ]*}\$?\1if (\2) PetscCall(\3$?g' | tr '$' '\n' | sed 's?ZZZ?$?g' > $i.joe ; mv $i.joe $i ; done

for i in `git ls-files | grep "\.[hc]$"` ; do sed 's?\$?ZZZ?g' $i | tr '\n' '$' | sed 's?\([ }else]*\)if (\([-;,.\*+=a-z0-9A-Z_>]*\)) {\$[ ]*PetscCall(\([- ._+=a-z0-9A-Z>*,()]*);\)\$\([ ]*\)} \([- ._+=a-z0-9A-Z>*,()]*);\)\$?\1if (\2) PetscCall(\3$\4\5$?g' | tr '$' '\n' | sed 's?ZZZ?$?g' > $i.joe ; mv $i.joe $i ; done

Yes, really ugly but Barry still cannot master awk

Commit-type: housekeeping

show more ...


# 9afe0dfc 26-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 649bdbde 25-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2022-05-22/fix-const-decl-malloc/release' into 'release'

Fixes for variables declared with const char **val and similar with PetscMalloc() and PetscFree()

See merge request pets

Merge branch 'barry/2022-05-22/fix-const-decl-malloc/release' into 'release'

Fixes for variables declared with const char **val and similar with PetscMalloc() and PetscFree()

See merge request petsc/petsc!5263

show more ...


# 0c99d500 22-May-2022 Barry Smith <bsmith@mcs.anl.gov>

Fixes for variables declared with const char **val and similar

E:\FGH\Git\Windows\petsc-3.17.1\src\sys\objects\options.c(716): warning C4090: 'function': different 'const' qualifiers
E:\FGH\Git\Wind

Fixes for variables declared with const char **val and similar

E:\FGH\Git\Windows\petsc-3.17.1\src\sys\objects\options.c(716): warning C4090: 'function': different 'const' qualifiers
E:\FGH\Git\Windows\petsc-3.17.1\src\sys\objects\options.c(757): warning C4090: 'function': different 'const' qualifiers

A PetscMalloc() that does not belong in index.c

Microsoft (R) C/C++ Optimizing Compiler Version 19.29.30133 for x64

Commit-type: portability-fix
/spend 15m
Reported-by: Henrik Büsing <Henrik.Buesing@fgh-ma.de>

show more ...


# 71075aaf 20-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 57e3f0c7 20-May-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jose/codespell-fixes' into 'release'

A few codespell fixes

See merge request petsc/petsc!5259


12345678910>>...37