ideas-0.7: src/Domain/Math/Power/Equation/Strategies.hs
-----------------------------------------------------------------------------
-- Copyright 2010, Open Universiteit Nederland. This file is distributed
-- under the terms of the GNU General Public License. For more information,
-- see the file "LICENSE.txt", which is included in the distribution.
-----------------------------------------------------------------------------
-- |
-- Maintainer : alex.gerdes@ou.nl
-- Stability : provisional
-- Portability : portable (depends on ghc)
--
-----------------------------------------------------------------------------
module Domain.Math.Power.Equation.Strategies
-- ( powerEqStrategy
-- , powerEqApproxStrategy
-- , expEqStrategy
-- , logEqStrategy
-- , higherPowerEqStrategy
-- )
where
import Prelude hiding (repeat, not)
import Common.Classes
import Common.Context
import Common.Id
import Common.Navigator
import Common.Rewriting
import Common.Strategy
import Common.View (belongsTo)
import Control.Arrow
import Data.Maybe
import Domain.Math.Data.Relation
import Domain.Math.Data.OrList
import Domain.Math.Expr
import Domain.Math.Equation.CoverUpExercise
import Domain.Math.Equation.CoverUpRules
import Domain.Math.Polynomial.CleanUp
import Domain.Math.Polynomial.Strategies (quadraticStrategy, linearStrategy)
import Domain.Math.Polynomial.Rules (flipEquation)
import Domain.Math.Power.Rules
import Domain.Math.Power.Utils
import Domain.Math.Power.Equation.Rules
import Domain.Math.Numeric.Rules
-- | Strategies ---------------------------------------------------------------
powerEqStrategy :: IsTerm a => LabeledStrategy (Context a)
powerEqStrategy = cleanUpStrategy clean strat
where
strat = label "Power equation" $ repeat
$ myCoverUpStrategy
<*> option (use greatestPower <*> use commonPower)
<*> use nthRoot
<*> remove (label "useApprox" $ try $ use approxPower)
clean = applyD $ exhaustiveUse rules
rules = onePower : fractionPlus : naturalRules ++ rationalRules
powerEqApproxStrategy :: LabeledStrategy (Context (Relation Expr))
powerEqApproxStrategy = label "Power equation with approximation" $
configureNow (configure cfg powerEqStrategy)
where
cfg = [ (byName (newId "useApprox"), Reinsert) ]
expEqStrategy :: LabeledStrategy (Context (Equation Expr))
expEqStrategy = cleanUpStrategy cleanup strat
where
strat = label "Exponential equation"
$ myCoverUpStrategy
<*> repeat (somewhereNotInExp (use factorAsPower))
<*> repeat (somewhereNotInExp (use reciprocal))
<*> powerS
<*> (use sameBase <|> use equalsOne)
<*> linearStrategy
cleanup = applyD (exhaustiveUse $ naturalRules ++ rationalRules)
. applyTop (fmap (mergeConstantsWith isIntRatio))
isIntRatio x = x `belongsTo` myIntegerView || x `belongsTo` v
where v = divView >>> first myIntegerView >>> second myIntegerView
powerS = exhaustiveUse [ root2power, addExponents, subExponents
, mulExponents, simpleAddExponents ]
logEqStrategy :: LabeledStrategy (Context (OrList (Relation Expr)))
logEqStrategy = label "Logarithmic equation"
$ use logarithm
<*> try (use flipEquation)
<*> repeat (somewhere $ use nthRoot
<|> use calcPower
<|> use calcPowerPlus
<|> use calcPowerMinus
<|> use calcPlainRoot
<|> use calcPowerRatio)
<*> quadraticStrategy
higherPowerEqStrategy :: LabeledStrategy (Context (OrList (Equation Expr)))
higherPowerEqStrategy = cleanUpStrategy cleanup coverUpStrategy
where
cleanup = applyTop $ fmap $ fmap cleanUpExpr
-- | Help functions -----------------------------------------------------------
myCoverUpStrategy :: IsTerm a => Strategy (Context a)
myCoverUpStrategy = repeat $ alternatives $ map use coverUpRules
somewhereNotInExp :: IsStrategy f => f (Context a) -> Strategy (Context a)
somewhereNotInExp = somewhereWith "somewhere but not in exponent" f
where
f a = if isPowC a then [1] else [0 .. arity a-1]
isPowC = maybe False (isJust . isPower :: Term -> Bool) . currentT