// // MPRootTerm.h // MathPad // // Created by Kim Wittenburg on 11.01.15. // Copyright (c) 2015 Kim Wittenburg. All rights reserved. // #import "MPFunctionTerm.h" /*! @header This file contains the MPRootTerm class. */ @class MPRootTerm; /*! @class MPRootTerm @abstract Represents a @link //apple_ref/occ/cl/MPRootFunction@/link. @discussion A root function is evaluated by evaluating the power pow(e, 1/n) where e is the expression to be rooted and n the exponent. */ @interface MPRootTerm : MPFunctionTerm @end