fractReduce method

bool fractReduce(
  1. int index,
  2. bool moveFlag
)

Implementation

bool fractReduce( int index, bool moveFlag ){
	if( index == 0 ){
		_array.matrix(index).mat(0).fractReduce();
		return true;
	} else {
		return _var.fractReduce( index, moveFlag );
	}
}