// function VALUE-ITERATION(mdp, ε) returns a utility function

        /**
         * The value iteration algorithm for calculating the utility of states.
         *
         * @param mdp
         *            an MDP with states S, actions A(s), <br>
         *            transition model P(s' | s, a), rewards R(s)
         * @param epsilon
         *            the maximum error allowed in the utility of any state
         * @return a vector of utilities for states in S
         */
        public IMap <S, double> valueIteration(IMarkovDecisionProcess <S, A> mdp, double epsilon)
        {
            //
            // local variables: U, U', vectors of utilities for states in S,
            // initially zero
            IMap <S, double> U      = Util.create(mdp.states(), 0D);
            IMap <S, double> Udelta = Util.create(mdp.states(), 0D);
            // &delta; the maximum change in the utility of any state in an
            // iteration
            double delta = 0;
            // Note: Just calculate this once for efficiency purposes:
            // &epsilon;(1 - &gamma;)/&gamma;
            double minDelta = epsilon * (1 - gamma) / gamma;

            // repeat
            do
            {
                // U <- U'; &delta; <- 0
                U.PutAll(Udelta);
                delta = 0;
                // for each state s in S do
                foreach (S s in mdp.states())
                {
                    // max<sub>a &isin; A(s)</sub>
                    ISet <A> actions = mdp.actions(s);
                    // Handle terminal states (i.e. no actions).
                    double aMax = 0;
                    if (actions.Size() > 0)
                    {
                        aMax = double.NegativeInfinity;
                    }
                    foreach (A a in actions)
                    {
                        // &Sigma;<sub>s'</sub>P(s' | s, a) U[s']
                        double aSum = 0;
                        foreach (S sDelta in mdp.states())
                        {
                            aSum += mdp.transitionProbability(sDelta, s, a) * U.Get(sDelta);
                        }
                        if (aSum > aMax)
                        {
                            aMax = aSum;
                        }
                    }
                    // U'[s] <- R(s) + &gamma;
                    // max<sub>a &isin; A(s)</sub>
                    Udelta.Put(s, mdp.reward(s) + gamma * aMax);
                    // if |U'[s] - U[s]| > &delta; then &delta; <- |U'[s] - U[s]|
                    double aDiff = System.Math.Abs(Udelta.Get(s) - U.Get(s));
                    if (aDiff > delta)
                    {
                        delta = aDiff;
                    }
                }
                // until &delta; < &epsilon;(1 - &gamma;)/&gamma;
            } while (delta > minDelta);

            // return U
            return(U);
        }
        public IMap <S, double> evaluate(IMap <S, A> pi_i, IMap <S, double> U, IMarkovDecisionProcess <S, A> mdp)
        {
            IMap <S, double> U_i   = CollectionFactory.CreateMap <S, double>(U);
            IMap <S, double> U_ip1 = CollectionFactory.CreateMap <S, double>(U);

            // repeat k times to produce the next utility estimate
            for (int i = 0; i < k; ++i)
            {
                // U<sub>i+1</sub>(s) <- R(s) +
                // &gamma;&Sigma;<sub>s'</sub>P(s'|s,&pi;<sub>i</sub>(s))U<sub>i</sub>(s')
                foreach (S s in U.GetKeys())
                {
                    A      ap_i = pi_i.Get(s);
                    double aSum = 0;
                    // Handle terminal states (i.e. no actions)
                    if (null != ap_i)
                    {
                        foreach (S sDelta in U.GetKeys())
                        {
                            aSum += mdp.transitionProbability(sDelta, s, ap_i) * U_i.Get(sDelta);
                        }
                    }
                    U_ip1.Put(s, mdp.reward(s) + gamma * aSum);
                }

                U_i.PutAll(U_ip1);
            }
            return(U_ip1);
        }
Exemple #3
0
 public void testRewardFunction()
 {
     // Ensure all actions can be performed in each cell.
     foreach (Cell <double> s in cw.GetCells())
     {
         if (4 == s.getX() && 3 == s.getY())
         {
             Assert.AreEqual(1.0, mdp.reward(s));
         }
         else if (4 == s.getX() && 2 == s.getY())
         {
             Assert.AreEqual(-1.0, mdp.reward(s));
         }
         else
         {
             Assert.AreEqual(-0.04, mdp.reward(s));
         }
     }
 }