Directory src/dr/inferencexml/operators/

Total Files:
31
Deleted Files:
3
Lines of Code:
1316

[root]/src/dr/inferencexml/operators

Lines of Code

src/dr/inferencexml/operators/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 65 (100.0%) 2192 (100.0%) 33.7
dong.w.xie 34 (52.3%) 1549 (70.7%) 45.5
akaruiws 11 (16.9%) 369 (16.8%) 33.5
alexander.alekseyenko 3 (4.6%) 85 (3.9%) 28.3
gcybis@yahoo.com.br 1 (1.5%) 77 (3.5%) 77.0
rambaut 7 (10.8%) 64 (2.9%) 9.1
msuchard 5 (7.7%) 35 (1.6%) 7.0
jheled 4 (6.2%) 13 (0.6%) 3.2

Most Recent Commits

rambaut 2012-07-07 04:08 Rev.: 5060

Spelling.

1 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: UniformOperatorParser.java (new)
gcybis@yahoo.com.br 2012-03-16 18:15 Rev.: 4863

Hierarchical model for discrete trait

77 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: HierarchicalBitFlipOperatorParser.java (new 77)
msuchard 2011-09-22 10:36 Rev.: 4330

Fixed integer overflow (when prior sampling) and mixed-math in RandomWalkOperator

2 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: RandomWalkOperatorParser.java (+2)
msuchard 2011-05-11 05:12 Rev.: 3976

Attempting to standardize citations in BEAUti for a more professional look; am unclear why we did not stick with the Citable interface.

4 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: RandomWalkOperatorParser.java (+4)
akaruiws 2011-04-01 18:56 Rev.: 3921

Tidy up more msatBMA related things.

0 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: RandomWalkIntegerOperatorParser.java (new)
akaruiws 2011-04-01 01:16 Rev.: 3911

Tidy up MsatBMA related things.

60 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: MicrosatelliteAveragingOperatorParser.java (del), MsatBitFlipOperatorParser.java (new 60)
dong.w.xie 2011-03-31 13:07 Rev.: 3908

Trunk: more big update on BEAUti microsat.

4 lines of code changed in 4 files:

  • src/dr/inferencexml/operators: MicrosatUpDownOperatorParser.java (new), UpDownOperatorParser.java (new)
dong.w.xie 2010-11-30 13:42 Rev.: 3732

Trunk: solve Issue 435: UniformIntegerOperator did not include upper in the value:

int newValue = MathUtils.nextInt(upper - lower) + lower;
Because nextInt(n) gives value [0, n-1], if upper = 2 then newValue cannot have 2.
The correct code should be
int newValue = MathUtils.nextInt(upper - lower + 1) + lower;

18 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: UniformIntegerOperatorParser.java (new)
dong.w.xie 2010-11-30 09:13 Rev.: 3731

Trunk: make Integer Parameter to allow to pass Variable<Integer>.

4 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: RandomWalkIntegerOperatorParser.java (+4 -3)
dong.w.xie 2010-10-20 10:20 Rev.: 3659

Trunk: merge change.

1 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: DeltaExchangeOperatorParser.java (new)
rambaut 2010-10-06 23:41 Rev.: 3605

Fixed an issue where an IntegerRandomWalkOperator was actually just generating a RandomWalkOperator (the wrong string was being used).

3 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: RandomWalkIntegerOperatorParser.java (+3 -3)
alexander.alekseyenko 2010-09-25 04:58 Rev.: 3571

Started MV Polya Likelihood model

2 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: DeltaMixOperatorParser.java (+2 -2)
jheled 2010-09-24 13:14 Rev.: 3570

Catch errors which lead to beast infinite loop or failure in parsers. more detailed error messages.

4 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: UniformOperatorParser.java (+4)
alexander.alekseyenko 2010-09-24 04:19 Rev.: 3566

add a new operator on sum constrained parameter, providing better mixing for multiscale parameters

83 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: DeltaMixOperatorParser.java (+83)
msuchard 2010-08-22 08:39 Rev.: 3423

In the middle of trying to get BEAGLE's dynamic scaling to work in BEAST

13 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: RandomWalkOperatorParser.java (+13 -2)
msuchard 2010-08-11 08:12 Rev.: 3379

Added ability to set parameter-independent bounds on UniformOperator; should help prior sampling with a hard-boundary on rootHeight

16 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: UniformOperatorParser.java (+16 -1)
akaruiws 2010-07-01 17:32 Rev.: 3298

Gibbs sampling for a single msat ancestral state.

47 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: MsatSingleAncestralStateGibbsOperatorParser.java (new 47)
akaruiws 2010-06-18 18:45 Rev.: 3275

Importance sampling for the msat ancestral states.

51 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: MicrosatelliteAveragingOperatorParser.java (new 2), MsatFullAncestryImportanceSamplingOperatorParser.java (new 49)
akaruiws 2010-06-13 21:50 Rev.: 3261

Weighted random walk integer operators.

121 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: RandomWalkIntegerNodeHeightWeightedOperatorParser.java (new 59), RandomWalkIntegerSetSizeWeightedOperatorParser.java (new 62)
akaruiws 2010-06-11 12:47 Rev.: 3248

Msat model averaging.

90 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: MicrosatelliteAveragingOperatorParser.java (+42), MicrosatelliteModelSelectOperatorParser.java (new 48)
jheled 2010-06-02 07:04 Rev.: 3210

Allow multiple moves in operator (via a user speciefied 'count')

8 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: UniformIntegerOperatorParser.java (+8 -3)
jheled 2010-06-02 06:57 Rev.: 3208

Make radius optional, as originally intended

1 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: BitSwapOperatorParser.java (+1 -1)
dong.w.xie 2010-03-03 10:42 Rev.: 3013

Trunk refactoring: finish MULTIVARIATE OU PROCESS (split parsers).

80 lines of code changed in 1 file:

  • src/dr/inferencexml/operators: MVOUCovarianceOperatorParser.java (new 80)
dong.w.xie 2010-03-02 09:47 Rev.: 3000

Trunk refactoring: 3rd part of operators (split parsers).

587 lines of code changed in 11 files:

  • src/dr/inferencexml/operators: BitFlipOperatorParser.java (new 55), BitMoveOperatorParser.java (new 61), BitSwapOperatorParser.java (+74), DirtyLikelihoodOperatorParser.java (new 49), JointOperatorParser.java (new 59), LogRandomWalkOperatorParser.java (new), SelectorOperatorParser.java (new 44), SimpleOperatorScheduleParser.java (new 75), TeamOperatorParser.java (new 61), ValuesPoolSwapOperatorParser.java (new 45)
rambaut 2010-03-02 01:17 Rev.: 2996

SetOperatorParser is wrongly named ('SetOperatorparser') - as this is a difference only in the case, I am changing it to another name and then back to the correct name. I have found that just changing the case can cause problems in some OSs.

60 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: SetOperatorParser.java (new 60), SetOperatorparser1.java (del)
rambaut 2010-03-02 01:11 Rev.: 2995

SetOperatorParser is wrongly named ('SetOperatorparser') - as this is a difference only in the case, I am changing it to another name and then back to the correct name. I have found that just changing the case can cause problems in some OSs.

0 lines of code changed in 2 files:

  • src/dr/inferencexml/operators: SetOperatorparser.java (del), SetOperatorparser1.java (new)
dong.w.xie 2010-03-01 13:11 Rev.: 2993

Trunk refactoring: 2nd part of operators (split parsers).

657 lines of code changed in 10 files:

  • src/dr/inferencexml/operators: CenteredScaleOperatorParser.java (new 53), DeltaExchangeOperatorParser.java (+87), LogRandomWalkOperatorParser.java (+11), MicrosatUpDownOperatorParser.java (+74), ScaleOperatorParser.java (new 93), SetOperatorparser.java (new 60), SwapOperatorParser.java (new 58), UniformIntegerOperatorParser.java (+60), UniformOperatorParser.java (+46), UpDownOperatorParser.java (+115)
dong.w.xie 2010-02-26 14:25 Rev.: 2987

Trunk refactoring: 1st part of operators (split parsers).

198 lines of code changed in 3 files:

  • src/dr/inferencexml/operators: MultipleRandomWalkIntegerOperatorParser.java (new 62), RandomWalkIntegerOperatorParser.java (+64), RandomWalkOperatorParser.java (+72)
Generated by StatSVN 0.7.0