private int addJumpMoves(BoardPosition pos, int rowInc, TwoPlayerMove lastMove,
BoardPosition next, BoardPosition beyondNext, MoveList moveList) {
CheckersMove m;
CaptureList capture = new CaptureList();
capture.add( next.copy() );
m = CheckersMove.createMove( pos.getLocation(), beyondNext.getLocation(),
capture, lastMove.getValue(), pos.getPiece().copy() );
List<CheckersMove> jumps = findJumpMoves( beyondNext, rowInc, m, weights_ );
moveList.addAll( jumps );