| d183316b | 09-Apr-2015 |
Pierre Barbier de Reuille <pierre.barbierdereuille@gmail.com> |
Updated TSFunctionDomainError signature
Instead of getting all stages and the stage index, the function gets directly the current state (e.g. the one to check). |
| 09e2f92c | 08-Apr-2015 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'knepley/feature-viewer-partial-read'
* knepley/feature-viewer-partial-read: Viewer: Fixed initialization TS: Updated example to new interface Plex: Fix compiler warning Viewer:
Merge branch 'knepley/feature-viewer-partial-read'
* knepley/feature-viewer-partial-read: Viewer: Fixed initialization TS: Updated example to new interface Plex: Fix compiler warning Viewer: Now ViewerRead() takes an extra argument to return the number of items read - An error is thrown for insufficient data unless the extra argument is non-NULL Viewer: Fixes for new Read interface - Fixed example - Fixed Fortran 90 binding - Fixed type Builder: Allow a local dictionary for run parameters Viewer: PetscViewerRead() should return the number of items actually read - This also applies to all its implementations
show more ...
|
| cb9d8021 | 16-Feb-2015 |
Pierre Barbier de Reuille <pierre.barbierdereuille@gmail.com> |
Added domain error checks at each stage
This patch adds two functions: 1 - TSSetFunctionDomainError 2 - TSFunctionDomainError
The first one to set a user function, the second one to call it. It als
Added domain error checks at each stage
This patch adds two functions: 1 - TSSetFunctionDomainError 2 - TSFunctionDomainError
The first one to set a user function, the second one to call it. It also adds the calls to TSFunctionDomainError in all implementations calling TSPostStage.
show more ...
|
| baa10174 | 06-Apr-2015 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
Fixed issues in the review: fixed TABs; C89 syntax; TSClone comm; error message; clarified implicit equations in docs |
| 060da220 | 06-Apr-2015 |
Matthew G. Knepley <knepley@gmail.com> |
Viewer: Now ViewerRead() takes an extra argument to return the number of items read - An error is thrown for insufficient data unless the extra argument is non-NULL |
| 5eca1a21 | 02-Apr-2015 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
ARKIMEX implementation and TSClone notes |
| 1297b224 | 02-Apr-2015 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
added some documetation/fixed some arkimex typos |
| d15a3a53 | 02-Apr-2015 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
Cleaned up some issues in TSClone |
| 1d144d4d | 01-Apr-2015 |
Satish Balay <balay@mcs.anl.gov> |
fixed typo in comment |
| e5168f73 | 27-Mar-2015 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
Replace TSDuplicate with TSClone; all is working but there is still some concern with SNES when the clone is destroyed and a GetSNES and SetSNES is needed |
| b2df71ad | 31-Mar-2015 |
Debojyoti Ghosh <ghosh@mcs.anl.gov> |
TSComputeRHSJacobian: If TSComputeRHSFunctionLinear is being used, then re-computing the RHS Jacobian (when called from TSComputeRHSFunctionLinear) is necessary, because the saved Jacobian is actuall
TSComputeRHSJacobian: If TSComputeRHSFunctionLinear is being used, then re-computing the RHS Jacobian (when called from TSComputeRHSFunctionLinear) is necessary, because the saved Jacobian is actually scaled-shifted [shift*I - Jac].
show more ...
|
| 34561852 | 31-Oct-2014 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
finalized TSDuplicate implementation and testing |
| 93b34091 | 06-Mar-2014 |
Debojyoti Ghosh <ghosh@mcs.anl.gov> |
TSDuplicate: Added an initial implementation of TSDuplicate() |
| dc1cb503 | 26-Feb-2014 |
Emil Constantinescu <emconsta@mcs.anl.gov> |
added a TS statement to allow saving the last solution to a file |
| 8e84e3e8 | 02-Apr-2015 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'master' into knepley/feature-viewer-partial-read
* master: (48 commits) ViennaCL: Fixes memory leak when destructing an aijviennacl matrix. MatLoad_MPIDense() always allocated arra
Merge branch 'master' into knepley/feature-viewer-partial-read
* master: (48 commits) ViennaCL: Fixes memory leak when destructing an aijviennacl matrix. MatLoad_MPIDense() always allocated array space even if it was previously provided Clarified lumping options for PCFieldSplitSchurPreType SELFP. fixed up PetscInfo in GAMG TSErrorWeightedNorm[2|Infinity]: API changes MatLoad_SeqDense() always allocated new space for the data even if the user already provided it Fixed DMCompositeGetAccessArray() to support readonly vectors Fix obviously-wrong aspects of documentation on SNESVINEWTONRSLS and SNESVINEWTONSSLS. fixed example to compile - demonstrates a bug var name 'len' was F90 key word For user provided Jacobian functions they should always assembly into the second matrix, the one from which the preconditioner is built because the first may be used as matrix-free with -snes_mf_operator Suggest --with-64-bit-indices if users mistakenly use --with-64bit-indices Fix configure logging of integer size. missing underscore in #define of vecgetarrayread translation of fortran stub for VECGETARRAYREAD updated test output files to reflect differences introduced previously in PCView output -ksp_type preonly does not support -ksp_monitor_short so remove from test line to prevent extranious warning output missing CHKERRQ; and ugly double declaration of ierr Plex: Reorganized PlexPoint interface - Added DMPlexGetPointLocalField() and DMPlexGetPointGlobalField() - Now the DMPlexGetLocalOffset*_Private() functions return start and end - Uniformly use private functions Plex: Put in explicit cast MatSetValuesMPISBAIJ will now print correct global indices when error generated due to new nonzero location ...
# Please enter a commit message to explain why this merge is necessary, # especially if it merges an updated upstream into a topic branch. # # Lines starting with '#' will be ignored, and an empty message aborts # the commit.
show more ...
|
| e27a82bc | 01-Apr-2015 |
Lisandro Dalcin <dalcinl@gmail.com> |
TSReset: Call TSAdaptReset() |
| a4868fbc | 26-Mar-2015 |
Lisandro Dalcin <dalcinl@gmail.com> |
TSErrorWeightedNorm[2|Infinity]: API changes
* Accept two arguments U,Y instead of always using ts->vec_sol * Accept argument wnormtype intead of use ts->adapt->wnormtype |
| adc79116 | 27-Mar-2015 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'dalcinl/feature-draw' |
| b00e99b9 | 27-Mar-2015 |
Barry Smith <bsmith@mcs.anl.gov> |
Merge branch 'barry/feature-bargraph' |
| 8beabaa1 | 27-Mar-2015 |
Barry Smith <bsmith@mcs.anl.gov> |
missing CHKERRQ; and ugly double declaration of ierr |
| f8e4bde8 | 27-Mar-2015 |
Matthew G. Knepley <knepley@gmail.com> |
Viewer: PetscViewerRead() should return the number of items actually read - This also applies to all its implementations |
| c72ed514 | 23-Mar-2015 |
Hong Zhang <hongzhang@anl.gov> |
remove redundant brackets |
| 17145e75 | 23-Mar-2015 |
Hong Zhang <hongzhang@anl.gov> |
enable users to evaluate cost integral in the forward run |
| d9e4b6ef | 23-Mar-2015 |
Matthew G. Knepley <knepley@gmail.com> |
Merge branch 'knepley/feature-harmonic-advection'
* knepley/feature-harmonic-advection: (86 commits) SNES: Some docs for NASM TS: Added view for MIMEX Plex: Silence compiler warnings Builder
Merge branch 'knepley/feature-harmonic-advection'
* knepley/feature-harmonic-advection: (86 commits) SNES: Some docs for NASM TS: Added view for MIMEX Plex: Silence compiler warnings Builder: Check for missing numProcs was wrong PetscFE: Turn off Fortran binding for PetscFECompositeGetMapping() Plex: Fix big bug in DMPlexGetGlobalFieldOffset_Internal() - If offset is negative (dof is on another proc), then we must have end < start Builder: Allow override of numProcs Plex: Fix Fortran wrappers for DMLabelView() and DMPlexDistribute() Plex+Label: Added Fortran wrapper for DMPlexCreateLabel() Plex: Dammit, how did this not get checked in? Plex: Refiner check for hybrid cells must use hybrid faces as well - Ghost cells in FV method are hybrid TS: MIMEX now uses work vectors for correct grid Plex: Adding support for FV in automatic interpolator construction - Notice that the injector cannot do the right thing until we scrap VecScatter Plex+FEM: Using PetscFVGetDualSpace() SNES+Doc: Added Options Database keys PetscFV: Added PetscFVRefine() - This allows interpolation to finer grids needed for FAS PetscFV: Added a dual space for calculating projections DM: Better error checking in DMCoarsen() DMDT+PetscFE: Added PetscQuadratureExpandComposite() - Replaces PetscFECompositeExpandQuadrature() - Added PetscFECompositeGetMapping() Plex: Fixed complex type error ...
Conflicts: src/dm/impls/plex/ftn-custom/makefile src/ts/interface/ts.c
show more ...
|
| 6e506d1e | 23-Mar-2015 |
Lisandro Dalcin <dalcinl@gmail.com> |
TSMonitorLGTimeStep: Don't call PetscDrawLGSetUseMarkers
Otherwise command line option -lg_use_markers false has no effect |