亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? concepts.hpp

?? support vector clustering for vc++
?? HPP
?? 第 1 頁 / 共 5 頁
字號:
//
//  Copyright (c) 2000-2002
//  Joerg Walter, Mathias Koch
//
//  Permission to use, copy, modify, distribute and sell this software
//  and its documentation for any purpose is hereby granted without fee,
//  provided that the above copyright notice appear in all copies and
//  that both that copyright notice and this permission notice appear
//  in supporting documentation.  The authors make no representations
//  about the suitability of this software for any purpose.
//  It is provided "as is" without express or implied warranty.
//
//  The authors gratefully acknowledge the support of
//  GeNeSys mbH & Co. KG in producing this work.
//

#ifndef _BOOST_UBLAS_CONCEPTS_
#define _BOOST_UBLAS_CONCEPTS_

#include <boost/concept_check.hpp>

// Concept checks based on ideas of Jeremy Siek

namespace boost { namespace numeric { namespace ublas {


    template<class I>
    struct Indexed1DIteratorConcept {
        typedef I iterator_type;

        void constraints () {
            iterator_type it = iterator_type ();
            // Index
            it.index ();
        }
    };

    template<class I>
    struct IndexedBidirectional1DIteratorConcept {
        typedef I iterator_type;

        void constraints () {
            function_requires< BidirectionalIteratorConcept<iterator_type> >();
            function_requires< Indexed1DIteratorConcept<iterator_type> >();
        }
    };

    template<class I>
    struct Mutable_IndexedBidirectional1DIteratorConcept {
        typedef I iterator_type;

        void constraints () {
            function_requires< Mutable_BidirectionalIteratorConcept<iterator_type> >();
            function_requires< Indexed1DIteratorConcept<iterator_type> >();
        }
    };

    template<class I>
    struct IndexedRandomAccess1DIteratorConcept {
        typedef I iterator_type;

        void constraints () {
            function_requires< RandomAccessIteratorConcept<iterator_type> >();
            function_requires< Indexed1DIteratorConcept<iterator_type> >();
        }
    };

    template<class I>
    struct Mutable_IndexedRandomAccess1DIteratorConcept {
        typedef I iterator_type;

        void constraints () {
            function_requires< Mutable_RandomAccessIteratorConcept<iterator_type> >();
            function_requires< Indexed1DIteratorConcept<iterator_type> >();
        }
    };

    template<class I>
    struct Indexed2DIteratorConcept {
        typedef I iterator_type;
        typedef typename I::dual_iterator_type dual_iterator_type;
        typedef typename I::dual_reverse_iterator_type dual_reverse_iterator_type;

        void constraints () {
            iterator_type it = iterator_type ();
            // Indices
            it.index1 ();
            it.index2 ();
            // Iterator begin/end
            dual_iterator_type it_begin (it.begin ());
            dual_iterator_type it_end (it.end ());
            // Reverse iterator begin/end
            dual_reverse_iterator_type it_rbegin (it.rbegin ());
            dual_reverse_iterator_type it_rend (it.rend ());
            ignore_unused_variable_warning (it_begin);
            ignore_unused_variable_warning (it_end);
            ignore_unused_variable_warning (it_rbegin);
            ignore_unused_variable_warning (it_rend);
        }
    };

    template<class I1, class I2>
    struct IndexedBidirectional2DIteratorConcept {
        typedef I1 subiterator1_type;
        typedef I2 subiterator2_type;

        void constraints () {
            function_requires< BidirectionalIteratorConcept<subiterator1_type> >();
            function_requires< BidirectionalIteratorConcept<subiterator2_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator1_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator2_type> >();
        }
    };

    template<class I1, class I2>
    struct Mutable_IndexedBidirectional2DIteratorConcept {
        typedef I1 subiterator1_type;
        typedef I2 subiterator2_type;

        void constraints () {
            function_requires< Mutable_BidirectionalIteratorConcept<subiterator1_type> >();
            function_requires< Mutable_BidirectionalIteratorConcept<subiterator2_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator1_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator2_type> >();
        }
    };

    template<class I1, class I2>
    struct IndexedRandomAccess2DIteratorConcept {
        typedef I1 subiterator1_type;
        typedef I2 subiterator2_type;

        void constraints () {
            function_requires< RandomAccessIteratorConcept<subiterator1_type> >();
            function_requires< RandomAccessIteratorConcept<subiterator2_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator1_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator2_type> >();
        }
    };

    template<class I1, class I2>
    struct Mutable_IndexedRandomAccess2DIteratorConcept {
        typedef I1 subiterator1_type;
        typedef I2 subiterator2_type;

        void constraints () {
            function_requires< Mutable_RandomAccessIteratorConcept<subiterator1_type> >();
            function_requires< Mutable_RandomAccessIteratorConcept<subiterator2_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator1_type> >();
            function_requires< Indexed2DIteratorConcept<subiterator2_type> >();
        }
    };

    template<class C>
    struct StorageArrayConcept {
        typedef C container_type;
        typedef typename C::size_type size_type;
        typedef typename C::value_type value_type;

        void constraints () {
            function_requires< RandomAccessContainerConcept<container_type> >();
            size_type n (0);
            // Sizing constructor
            container_type c = container_type (n);
            // Initialised sizing constructor
            container_type (n, value_type (5));
            ignore_unused_variable_warning (c);
        }
    };

    template<class C>
    struct Mutable_StorageArrayConcept {
        typedef C container_type;
        typedef typename C::size_type size_type;
        typedef typename C::value_type value_type;
        typedef typename C::iterator iterator_type;

        void constraints () {
            function_requires< Mutable_RandomAccessContainerConcept<container_type> > ();
            size_type n (0);
            // Sizing constructor
            container_type c = container_type (n);
            // Initialised sizing constructor
            c = container_type (n, value_type (3));
            // Resize
            c.resize (n, value_type (5));
            // Resize - none preserving
            c.resize (n);
        }
    };

    template<class C>
    struct StorageSparseConcept {
        typedef C container_type;
        typedef typename C::size_type size_type;

        void constraints () {
            function_requires< ReversibleContainerConcept<container_type> > ();
        }
    };

    template<class C>
    struct Mutable_StorageSparseConcept {
        typedef C container_type;
        typedef typename C::size_type size_type;
        typedef typename C::value_type value_type;
        typedef typename C::iterator iterator_type;

        void constraints () {
            // NOTE - Not Mutable_ReversibleContainerConcept
            function_requires< ReversibleContainerConcept<container_type> >();
            container_type c = container_type ();
            value_type t = value_type ();
            iterator_type it = iterator_type (), it1 = iterator_type (), it2 = iterator_type ();
            // Insert
            c.insert (it, t);
            // Erase
            c.erase (it);
            // Range erase
            c.erase (it1, it2);
            // Clear
            c.clear ();
        }
    };

    template<class G>
    struct IndexSetConcept {
        typedef G generator_type;
        typedef typename G::size_type size_type;
        typedef typename G::value_type value_type;

        void constraints () {
            function_requires< AssignableConcept<generator_type> >();
            function_requires< ReversibleContainerConcept<generator_type> >();
            generator_type g = generator_type ();
            size_type n (0);
            value_type t;
            // Element access
            t = g (n);
            ignore_unused_variable_warning (t);
        }
    };

    template<class SE>
    struct ScalarExpressionConcept {
        typedef SE scalar_expression_type;
        typedef typename SE::value_type value_type;

        void constraints () {
            scalar_expression_type *sp;
            scalar_expression_type s = *sp;
            value_type t;
            // Conversion
            t = s;
            ignore_unused_variable_warning (t);
        }
    };

    template<class VE>
    struct VectorExpressionConcept {
        typedef VE vector_expression_type;
        typedef typename VE::type_category type_category;
        typedef typename VE::size_type size_type;
        typedef typename VE::value_type value_type;
        typedef typename VE::const_iterator const_iterator_type;
        typedef typename VE::const_reverse_iterator const_reverse_iterator_type;

        void constraints () {
            vector_expression_type *vp;
            const vector_expression_type *cvp;
            vector_expression_type v = *vp;
            const vector_expression_type cv = *cvp;
            size_type n (0), i (0);
            value_type t;
            // Find (internal?)
            const_iterator_type cit (v.find (i));
            // Beginning of range
            const_iterator_type cit_begin (v.begin ());

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产欧美日韩不卡| 亚洲资源中文字幕| 欧美羞羞免费网站| 黑人精品欧美一区二区蜜桃| 亚洲欧美综合另类在线卡通| 欧美一级高清片| 97久久超碰精品国产| 老司机午夜精品| 夜夜嗨av一区二区三区网页| 欧美精品一区二区三区蜜桃 | 日本精品裸体写真集在线观看| 美女国产一区二区| 亚洲精品视频一区| 国产校园另类小说区| 欧美日韩精品电影| 色婷婷精品久久二区二区蜜臀av | 99久久精品久久久久久清纯| 麻豆91免费看| 婷婷国产v国产偷v亚洲高清| 亚洲天堂免费在线观看视频| 久久夜色精品国产噜噜av| 欧美人成免费网站| 色综合久久综合网| 99re视频这里只有精品| 国产成人精品一区二| 日本欧美一区二区在线观看| 亚洲一区二区不卡免费| 亚洲欧美日韩国产成人精品影院 | 欧美一级欧美一级在线播放| 在线欧美日韩国产| 91美女精品福利| 国产91富婆露脸刺激对白| 精一区二区三区| 免费成人av资源网| 日韩高清在线不卡| 午夜精品一区二区三区免费视频| 日韩av一区二区三区四区| 一区二区三区不卡视频在线观看| 国产精品黄色在线观看| 国产日韩av一区二区| 久久综合色婷婷| 久久亚洲一级片| 久久久九九九九| 久久精品夜色噜噜亚洲aⅴ| 日韩欧美在线一区二区三区| 欧美一区二区三区免费大片 | 自拍偷拍国产亚洲| 中文字幕一区二区三中文字幕| 欧美激情中文字幕一区二区| 欧美国产一区二区在线观看| 久久综合精品国产一区二区三区| 欧美一区二区啪啪| 日韩一级视频免费观看在线| 日韩欧美一区二区免费| 欧美日韩免费观看一区二区三区| 欧洲精品中文字幕| 欧美私模裸体表演在线观看| 欧美日韩国产综合一区二区| 欧美日韩高清在线| 欧美精品tushy高清| 91精品国产福利| 日韩欧美高清dvd碟片| 精品日韩在线观看| 国产午夜精品美女毛片视频| 欧美国产综合一区二区| 亚洲欧洲日产国码二区| 亚洲精品国产一区二区精华液| 亚洲午夜在线视频| 青青草97国产精品免费观看无弹窗版| 紧缚奴在线一区二区三区| 精品一区二区国语对白| 国产91丝袜在线播放0| 99久久精品国产一区| 精品视频一区三区九区| 精品国产乱子伦一区| 欧美高清在线一区| 亚洲午夜国产一区99re久久| 日本怡春院一区二区| 国产麻豆一精品一av一免费 | 国产精品国产馆在线真实露脸 | 亚洲欧美一区二区三区孕妇| 午夜欧美在线一二页| 国内不卡的二区三区中文字幕| 国产成人av资源| 欧美在线观看一二区| 日韩精品在线看片z| 久久久精品综合| 亚洲一区二区精品久久av| 经典三级在线一区| 91久久精品一区二区| 日韩欧美色电影| 亚洲女人****多毛耸耸8| 免费视频最近日韩| av电影在线观看一区| 4438x成人网最大色成网站| 国产日韩精品一区二区三区在线| 一区二区三区丝袜| 国产一区二区日韩精品| 欧美视频在线观看一区| 日韩午夜电影在线观看| 中文字幕一区二区三区四区不卡| 日本不卡123| 色天使色偷偷av一区二区| 欧美精品一区二区精品网| 亚洲主播在线播放| 国产.精品.日韩.另类.中文.在线.播放| 在线精品视频免费播放| 国产情人综合久久777777| 天堂va蜜桃一区二区三区 | 美女被吸乳得到大胸91| 91在线小视频| 国产网红主播福利一区二区| 手机精品视频在线观看| 色综合天天综合狠狠| 久久久美女艺术照精彩视频福利播放| 亚洲一卡二卡三卡四卡无卡久久| 国产99久久精品| 久久综合久久鬼色| 日本强好片久久久久久aaa| 色综合一区二区| 国产精品另类一区| 国产一区二区三区日韩| 欧美一区二区在线免费观看| 亚洲激情校园春色| www..com久久爱| 亚洲国产岛国毛片在线| 国产一区二区美女诱惑| 欧美一区二区福利视频| 亚洲h精品动漫在线观看| 91老师片黄在线观看| 国产精品福利影院| 国产成人午夜视频| 久久综合狠狠综合久久激情| 男女性色大片免费观看一区二区| 欧美丝袜丝交足nylons图片| 亚洲欧美色一区| 91麻豆视频网站| 亚洲精品videosex极品| 色综合久久综合网欧美综合网| 亚洲欧洲www| 色哟哟一区二区三区| 亚洲欧美国产77777| 91亚洲男人天堂| 亚洲视频资源在线| 91论坛在线播放| 亚洲综合一二三区| 在线亚洲高清视频| 亚洲一区视频在线| 在线观看91精品国产麻豆| 天天影视网天天综合色在线播放 | 中文字幕不卡在线| 成人激情小说网站| 亚洲美女在线一区| 91国产成人在线| 调教+趴+乳夹+国产+精品| 欧美一区二区女人| 国产精品一区二区在线观看网站| 2023国产精品自拍| 国产suv一区二区三区88区| 亚洲国产精品激情在线观看| 成人h动漫精品一区二| 亚洲欧美视频一区| 在线综合视频播放| 久久99精品久久久久久国产越南| 久久影院午夜片一区| 岛国精品在线播放| 亚洲视频资源在线| 欧美精品1区2区| 狠狠色丁香九九婷婷综合五月| 国产亚洲欧洲997久久综合| 成人性生交大片免费看视频在线| 一色屋精品亚洲香蕉网站| 欧美午夜精品久久久久久孕妇| 日本aⅴ免费视频一区二区三区| 26uuu久久天堂性欧美| a级高清视频欧美日韩| 亚洲成人av电影在线| 欧美不卡一二三| 99久久伊人精品| 视频一区中文字幕| 久久久www免费人成精品| 99精品视频中文字幕| 日韩一区精品字幕| 欧美国产综合色视频| 欧美日韩五月天| 国产精品资源在线观看| 亚洲综合在线电影| 久久综合狠狠综合久久激情| 色综合网站在线| 免费观看一级特黄欧美大片| 国产精品蜜臀在线观看| 欧美精品久久久久久久多人混战 | 欧美一区二区国产| 99精品视频一区| 韩国av一区二区三区四区| 亚洲激情中文1区| 国产欧美精品一区二区三区四区 | 亚洲精品自拍动漫在线| 日韩女优电影在线观看| 一本大道久久a久久综合|