Description Usage Arguments Error Code Ranges Author(s) See Also Examples
View source: R/ParameterChecks_CoopGame.R
stopOnInvalidBankruptcy checks if estate is specified correctly (as parameter in a bankruptcy game). Validation result gets stored to object paramCheckResult in case an error occured and causes stop otherwise.
| 1 | stopOnInvalidEstate(paramCheckResult, E)
 | 
| paramCheckResult | list object for check result with list element 'errCode' for the error code and 'errMessage' for the error message. | 
| E | is the value of the estate in a bankruptcy game | 
Error codes and messages shown to user if error on parameter check occurs
| Error Code | Message | 
| 1150 | Estate must be nonnegative! | 
| 1151 | Estate must be numeric! | 
| 1152 | Invalid estate as E is NULL | 
Jochen Staudacher jochen.staudacher@hs-kempten.de
Other ParameterChecks_CoopGame: 
getEmptyParamCheckResult(),
stopOnInconsistentEstateAndClaimsVector(),
stopOnInvalidAllocation(),
stopOnInvalidBoolean(),
stopOnInvalidClaimsVector(),
stopOnInvalidCoalitionS(),
stopOnInvalidDictator(),
stopOnInvalidGameVector(),
stopOnInvalidGrandCoalitionN(),
stopOnInvalidIndex(),
stopOnInvalidLeftRightGloveGame(),
stopOnInvalidNChooseB(),
stopOnInvalidNumberOfPlayers(),
stopOnInvalidNumber(),
stopOnInvalidQuota(),
stopOnInvalidVetoPlayer(),
stopOnInvalidWeightVector(),
stopOnParamCheckError()
| 1 2 3 4 | library(CoopGame)
paramCheckResult=getEmptyParamCheckResult()
validEstate = 55
stopOnInvalidEstate(paramCheckResult, E=validEstate)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.