edu.oregonstate.eecs.mcplan.PhasedPolicy.java Source code

Java tutorial

Introduction

Here is the source code for edu.oregonstate.eecs.mcplan.PhasedPolicy.java

Source

/* LICENSE
Copyright (c) 2013-2016, Jesse Hostetler (jessehostetler@gmail.com)
All rights reserved.
    
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
    
1. Redistributions of source code must retain the above copyright notice,
   this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
   this list of conditions and the following disclaimer in the documentation
   and/or other materials provided with the distribution.
    
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/

/**
 * 
 */
package edu.oregonstate.eecs.mcplan;

import java.util.ArrayList;
import java.util.Arrays;

import org.apache.commons.lang3.builder.HashCodeBuilder;

/**
 * A non-stationary Policy that cycles through a list of Policies depending on
 * the absolute time.
 */
public class PhasedPolicy<S, A> extends Policy<S, A> {
    public static <S, A> PhasedPolicy<S, A> create(final ArrayList<Policy<S, A>> Pi, final int[] ts) {
        return new PhasedPolicy<S, A>(Pi, ts);
    }

    private final ArrayList<Policy<S, A>> Pi_;
    private final int[] ts_;

    private Policy<S, A> pi_ = null;

    /**
     * @param Pi
     * @param ts The *start* times for the policies in Pi
     */
    public PhasedPolicy(final ArrayList<Policy<S, A>> Pi, final int[] ts) {
        Pi_ = Pi;
        ts_ = ts;
    }

    @Override
    public int hashCode() {
        return new HashCodeBuilder(311, 313).append(Pi_).append(ts_).toHashCode();
    }

    @Override
    public boolean equals(final Object obj) {
        if (obj == null || !(obj instanceof PhasedPolicy<?, ?>)) {
            return false;
        }
        final PhasedPolicy<?, ?> that = (PhasedPolicy<?, ?>) obj;
        return Pi_.equals(that.Pi_) && Arrays.equals(ts_, that.ts_);
    }

    @Override
    public void setState(final S s, final long t) {
        for (int i = 0; i < ts_.length; ++i) {
            if (t < ts_[i]) {
                pi_ = Pi_.get(i - 1);
                pi_.setState(s, t);
                return;
            }
        }
        pi_ = Pi_.get(Pi_.size() - 1);
        pi_.setState(s, t);
    }

    @Override
    public A getAction() {
        return pi_.getAction();
    }

    @Override
    public void actionResult(final S sprime, final double[] r) {
        pi_.actionResult(sprime, r);
    }

    @Override
    public String getName() {
        return "PhasedPolicy";
    }

}