Skip to content

Commit

Permalink
bug fix #184
Browse files Browse the repository at this point in the history
classes were pointing toward the wrong JAGS files :S
  • Loading branch information
Ben Vincent committed May 20, 2017
1 parent 9ea4806 commit be1b858
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
methods (Access = public)
function obj = ModelMixedEbertPrelec(data, varargin)
obj = obj@EbertPrelec(data, varargin{:});
obj.modelFilename = 'mixedExpPower';
obj.modelFilename = 'mixedEbertPrelec';
obj = obj.addUnobservedParticipant('GROUP');

% MUST CALL THIS METHOD AT THE END OF ALL MODEL-SUBCLASS CONSTRUCTORS
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

function obj = ModelSeparateEbertPrelec(data, varargin)
obj = obj@EbertPrelec(data, varargin{:});
obj.modelFilename = 'separateExpPower';
obj.modelFilename = 'separateEbertPrelec';

% MUST CALL THIS METHOD AT THE END OF ALL MODEL-SUBCLASS CONSTRUCTORS
obj = obj.conductInference();
Expand Down

0 comments on commit be1b858

Please sign in to comment.