Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions p2.cc
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ void p2_t::add_quantile( double quant )
double *markers = allocate_markers( 3 );

/* Add in appropriate dn markers */
markers[0] = quant;
markers[1] = quant/2.0;
markers[0] = quant/2.0;
markers[1] = quant;
markers[2] = (1.0+quant)/2.0;

update_markers( );
Expand Down