History log of /petsc/src/snes/tutorials/ex1f.F90 (Results 26 – 41 of 41)
Revision Date Author Comments
# d4043210 06-Apr-2022 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/release'


# 6b51dbe6 06-Apr-2022 Satish Balay <balay@mcs.anl.gov>

Merge branch 'psanan/docs-remove-concepts' into 'release'

Docs: remove Concepts

See merge request petsc/petsc!5065


# 1bb3edfd 06-Apr-2022 Patrick Sanan <patrick.sanan@gmail.com>

Docs: remove "Concepts:" and related comments in /*T .. T*/ blocks

Remove all \*T ... comment blocks with e.g.

cd src && find . -type f -exec sed -i '/^[! ] *\/\*T$/,/^[! ]*T\*\/$/d' {} \;

Clea

Docs: remove "Concepts:" and related comments in /*T .. T*/ blocks

Remove all \*T ... comment blocks with e.g.

cd src && find . -type f -exec sed -i '/^[! ] *\/\*T$/,/^[! ]*T\*\/$/d' {} \;

Clean up resulting double blank lines with e.g.

cd src && find . type f \( -name "*.c" -o -name "*.cxx" -o -name "*.F" -o -name "*.F90" \) -exec sh -c "cat -s {} > tmp && mv tmp {}" \;

Manually revert those changes from the vendored code (src/sys/yaml)

Manually restore a few comments from these blocks.

Manually remove "Concepts:" and "Processors:" comments from files
which have these outside of "\*T" blocks automatically deleted above.

show more ...


# c52a6700 02-Jun-2021 Satish Balay <balay@mcs.anl.gov>

Merge branch 'stefanozampini/fix-warnings-nec' into 'main'

Stefanozampini/fix warnings nec

See merge request petsc/petsc!4047


# 2a27bf02 30-Apr-2021 Stefano Zampini <stefano.zampini@gmail.com>

Fix compiler warnings


# 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


# e4a630a0 16-Sep-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-09-01/fix-with-log-zero' into 'master'

Clean up examples so they run correctly without warnings configured using...

See merge request petsc/petsc!3193


# 956f8c0d 01-Sep-2020 Barry Smith <bsmith@mcs.anl.gov>

Clean up examples so they run correctly without warnings configured using --with-log=0 and --with-info=0

Make CI pipeline linux job build with these options

Commit-type: testing-fix, style-fix, mai

Clean up examples so they run correctly without warnings configured using --with-log=0 and --with-info=0

Make CI pipeline linux job build with these options

Commit-type: testing-fix, style-fix, maintainability
/spend 1h

show more ...


# 2d88a74b 31-Aug-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'barry/2020-08-29/fortran-stub-converged-reason-view' into 'master'

Add Fortran stubs for KSPConvergedReasonView() and SNESConvergedReasonView()

See merge request petsc/petsc!3117


# 91f3e32b 31-Aug-2020 Barry Smith <bsmith@mcs.anl.gov>

Add Fortran stubs for KSPConvergedReasonView() and SNESConvergedReasonView()

Commit-type: bug-fix
/spend 15m
Reported-by: Thibaut Appel <t.appel17@imperial.ac.uk>


# 86581237 22-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge remote-tracking branch 'origin/maint'


# 84516c07 22-Apr-2020 Satish Balay <balay@mcs.anl.gov>

Merge branch 'jolivet/fix-wrong-semicolons' into 'maint'

Fix wrong semicolons

See merge request petsc/petsc!2732


# d21b9a37 21-Apr-2020 Pierre Jolivet <pierre.jolivet@enseeiht.fr>

Fix wrong semicolons


# c20d7725 22-Mar-2020 Jed Brown <jed@jedbrown.org>

Merge branch 'jed/promote-examples-tests-tutorials' [petsc/petsc!2610]

* jed/promote-examples-tests-tutorials:
Promote examples/{tests,tutorials}/ to {tests,tutorials}/


# c4762a1b 18-Mar-2020 Jed Brown <jed@jedbrown.org>

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
compl

Promote examples/{tests,tutorials}/ to {tests,tutorials}/

This shortens paths and improves consistency between test target names
and paths to the source and output files. Most of the work was
completed by this script, followed by mild cleanup of nonconforming
cases.

for makefile in `git ls-files 'src/*makefile'`; do
if rg -q 'DIRS.*\bexamples\b' $makefile; then
base=$(dirname $makefile)
dirs=$(cd $base/examples && ls -d tests tutorials 2>/dev/null | xargs echo)
perl -pi -e "s#^(DIRS.*)\bexamples\b#\1${dirs}#" $makefile
git rm $base/examples/makefile
for t in $dirs; do
git mv $base/examples/$t $base/
perl -pi -e "s#^(LOCDIR[[:space:]]*=).*#\1 $base/$t/#" $base/$t
done
fi
done

git grep -l -E -z 'examples/(tutorials|tests)' | xargs -0 perl -pi -e 's#examples/(tutorials|tests)#\1#g'
git checkout @ \
src/docs/website/documentation/changes/ \
src/benchmarks/results/

show more ...


12