Skip to content

Commit

Permalink
Remove unused MAST_MAX_ALLNODE
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Smith committed Jul 9, 2020
1 parent 03e6026 commit 6e8b7b0
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/mast.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
#include "ints.h"
using namespace Rcpp;

const int16 MAST_MAX_NODE = 4095, /* Much larger --> overflow size of stack frame */
MAST_MAX_TIP = MAST_MAX_NODE + 1,
MAST_MAX_ALLNODE = MAST_MAX_NODE - 1 + MAST_MAX_NODE;
const int16 MAST_MAX_NODE = 4095, /* Increasing --> overflow size of stack frame */
MAST_MAX_TIP = MAST_MAX_NODE + 1;

int16 max_of_six (const int16 m1,
const int16 m2,
Expand Down

0 comments on commit 6e8b7b0

Please sign in to comment.