001/*
002 * Copyright (c) 2009 The openGion Project.
003 *
004 * Licensed under the Apache License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 *     http://www.apache.org/licenses/LICENSE-2.0
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
013 * either express or implied. See the License for the specific language
014 * governing permissions and limitations under the License.
015 */
016package org.opengion.penguin.math.ga;
017
018/**
019 * HybsGeneticAlgorithmで取り扱うデータ用の共通インターフェースです。
020 *
021 * GAではこのインタフェイスを継承したオブジェクトを遺伝情報として利用します。
022 *
023 */
024public interface HybsGAObject {
025        /**
026         * fitness計算時に利用する値。
027         * 実クラスでは、例えば内部の値を元にDBから検索した値でもよい。
028         *
029         * @return  fitness用の値
030         */
031        double getFitness();
032
033//      /**
034//       * 自身を表す文字列。
035//       *
036//       * @return  自身を表す文字列
037//       */
038//      @Override
039//      String toString() ;
040}