//
// MPSumFunctionTerm.h
// MathPad
//
// Created by Kim Wittenburg on 15.11.14.
// Copyright (c) 2014 Kim Wittenburg. All rights reserved.
//
#import "MPFunctionTerm.h"
/*!
@header
This file contains the MPSumFunctionTerm class.
*/
@class MPSumFunctionTerm;
/*!
@class MPSumFunctionTerm
@abstract Represents and evaluates a @link
//apple_ref/occ/cl/MPSumFunction@/link.
@discussion A sum function evaluates its sum term n times. How
often it actually is evaluated depends on the boundary
expressions (start and target). Both are inclusive.
A sum function also features a variable that contains the current
value of the iteration. The variable is defined in the start
expression and incremented by 1 after every
iteration.
*/
@interface MPSumFunctionTerm : MPFunctionTerm
@end