[過去ログ] Boost総合スレ part8 (1001レス)
1-

このスレッドは過去ログ倉庫に格納されています。
次スレ検索 歴削→次スレ 栞削→次スレ 過去ログメニュー
346
(2): 2009/11/24(火) 01:34:40 AAS
boost::iostreamsを使ってストリームりました。
このストリームを外から見たときはboostを使ったように見えないように、ダウンキャストしてostreamか何かに入れて置きたいのですが、どうにもうまくいきません。
どうしたら良いのでしょうか。

std::ostream a = boost::iostreams::stream<boost::iostreams::null_sink>();

こんなことがしたいです。
347: 2009/11/24(火) 02:01:44 AAS
>>346
たぶん、C++0xだとそれでコンパイルできると思う。

とりあえず現状ではtypedef boost::iostreams::stream<hogehoge> my_stream_type;みたいにごまかすくらいしかないと思う。
もちろん、オブジェクトを関数の引数として渡すときには、もちろんstd::ostream&やstd::istream&で受け取れるけど。
348: 346 2009/11/24(火) 02:16:53 AAS
>>.347
解答ありがとうございます。出来ませんか・・・。
349: 2009/11/24(火) 05:18:50 AAS
メンバ変数なり関数ローカルなstatic変数にして、
std::ostream& を返す取得関数で公開すれば具象型はいちおう隠蔽できるけど。
それで不都合あったり?
350: 2009/11/24(火) 18:34:11 AAS
resizeするときに、fortran_storage_order()のオプションを与える方法を教えていただけないでしょうか?
以下のように、fortran_storage_order()をつけるとresizeでエラーとなります。
  #include <boost/multi_array.hpp>
  int n = 200;
  typedef boost::multi_array<double, 2>::extent_range erange;
  boost::multi_array<double, 2> matrix(boost::extents[0][0]);
  matrix.resize(boost::extents[erange(1,n+1)][erange(1,n+1)], boost::fortran_storage_order());
351: 2009/11/27(金) 19:25:51 AAS
更新しました。1.41正式版がリリースされてから一週間経ってもtrunkが1.42に移行しておりませんので、
マイナーバージョンアップ版が出るかもしれませんね。
外部リンク:booster.x0.to
以下更新内容の一部
[Program_options]
allow empty values in config file, Fixes #1537
[Spirit]
Spirit: moved iter_pos parser to repository, added example
Spirit: fixed token_def::what()
Spirit: Moving karma::symbols to main code base
[Format]
fixes new functions (remaining_args, expected_args, ...) in case bound.size()==0
[Regex]
Allow std::locale's to not have a messages facet installed (fixes some STLPort issues).
Allow match_results to handle singular iterators.
[Integer]
Add support for long long throughout. Fixes #653.
Update Boost.Integer meta-programming classes to work with intmax_t where possible - ie to be 64-bit clean.
[Thread]
Ensure call_once event is correctly cleaned up
A partial fix for issue #2100: use boost::throw_exception for all exceptions except thread_interrupted
Don't use timed_lock to do a lock
Added missing BOOST_THREAD_DECL for at_thread_exit_function
Using BOOST_ASSERT rather than assert
[Graph]
Changed vertex_iterator to have vertex_descriptor rather than vertices_size_type as its value type
Removed old CSR interface; fixes #3135
[Smart_ptr]
Add error checking to lwm_pthreads.hpp. Refs #2681.
Remove std::move references. Refs #3570.

亦、libs_for_build_boost.rarもICUを4.3.3にアップデート致しました。
352: 2009/12/03(木) 02:46:03 AAS
intrusive_ptrのコンストラクタにexplicitがついてないのはなんでなんだぜ?
デフォルト値があるだけで、厳密には1引数じゃないから?
353
(1): 2009/12/03(木) 03:12:25 AAS
intrusive_ptr & operator=(T * rhs)
があるね
354: 2009/12/03(木) 13:33:43 AAS
boostのコンパイル済み.libって、同じコンパイラでも内部で使用するクラスの実装、
たとえばSTLが違う場合(VC++で標準STLかSTLPortか)にリンクしても問題ない?
標準STLでもセキュリティ強化の#defineを指定すると実装内容が変わったりするし・・・
355: 2009/12/03(木) 17:13:48 AAS
STLPortはBoostビルド時に専用のコンフィグコマンドがあるので、
問題があるかどうかは知らんけどとりあえず自前でビルドして使った方がいいと思う
356: 2009/12/04(金) 04:02:55 AAS
>>353
あー、intrusive_ptrに対応してるクラスなら、
そのポインタから安全に変換できるはずだからexplicitは必要ないってことか。
357
(1): 2009/12/04(金) 19:24:17 AAS
更新しました。SVNは1.42に移行しました。
外部リンク:booster.x0.to
以下更新内容の一部
[Program_options]
ProgramOptions: added a couple of missing std:: namespace qualifiers
[Spirit]
Spirit: added karma::symbols generator, updated docs, tests, and example
Spirit: removed UB in rule and token_def initialization, added copy constructor for token_def
Spirit: added karma::auto_ and related facilities, added test
Spirit: added new karma example (auto_facilities.cpp), tweaks to auto_ tests
Spirit: added auto based overloads for API functions where possible
[Serialization]
fixed BOOST_STATIC_WARNING implementation macro name conflict
Fix memory leaks in void_caster short cut memory leaks
[Uuid]
Added uuid library
Removed BOOST_STATIC_ASSERT, replaced with a static method
[Iterator]
Made sure that iterator_facade's nested ``::pointer`` type is always
the same as what's returned from operator->. For input iterators,
that wasn't always the case (see operator_arrow_proxy).Fixes #1019.
[Graph]
Fixed missing #endif
[Integer]
Change long long to boost::long_long_type etc.
Make code respect BOOST_NO_INTEGRAL_INT64_T.
[Bind]
Make mem_fn work with overloaded unary operator&. Refs #3003. Sorry it took so long.
[Exeption]
Ticket #3211

亦、libs_for_build_boost.rarもbjam.exeをrev.58011にアップデート致しました。
358: 2009/12/05(土) 14:43:24 AAS
使ってないが乙
359: 2009/12/05(土) 14:45:35 AAS
>>357
sankusu otsu
360: 2009/12/07(月) 18:00:18 AAS
VS2008を使っているのですが、なぜかthreadだけリンカエラーがでます。

↓こんな感じで
1>LINK : fatal error LNK1104: ファイル 'libboost_thread-vc90-mt-sgd-1_40.lib' を開くことができません。

同じcppファイルの中でも、他のやつ(unordered_mapとか)は問題なく使えてるのに、threadだけでます。
だれか解決法を知っている方がいたらご教授を……orz
361
(1): 2009/12/07(月) 18:03:23 AAS
boostをちゃんとインストールしよう。
そのままだとヘッダだけで使えるライブラリしか使えないよ。
362: 2009/12/07(月) 18:47:25 AAS
>>361
解決しました。

インストールはしていたのですが、どうやらライブラリのパス指定が間違っていたようです。
標準に指定されるディレクトリから変更した場合、そことは別の場所にライブラリフォルダができてしまうようで……。
コマンドプロントのメッセージを追ってたら気付くことができました……。

どうも、ありがとうございました。
363: 2009/12/08(火) 23:50:50 AAS
#include <boost/spirit/utility/functor_parser.hpp>
では警告が出るから
#include <boost/spirit/include/classic_functor_parser.hpp>
を使うと、
error: expected class-name before '<' token
やらのエラーで今度はコンパイル出来ない。(#^ω^)
364: 2009/12/09(水) 00:18:19 AAS
自己解決。
namespace が boost::spirit::classic になったのか。失礼した。
365: 2009/12/09(水) 06:37:45 AAS
ここにもspiritの罠に引っかかった生け贄が一人いたか。

俺もだ。
366: 2009/12/10(木) 04:16:08 AAS
コンテナフレームワークライブラリはどこですか?
367: 2009/12/11(金) 13:19:19 AAS
threadとbindでメンバ関数で引数を取る場合、どんな感じで使えばいいのでしょうか……?

たとえばこんなふうに
class Hoge{
public:
  void run();
void fanc(int x, int y);
}

Hoge tmp;
thread thr_tmp(bind(&Hoge::run, &tmp));

runが引数を取らないメンバ関数ならこれで動きますが、
メンバ関数が引数を取る場合(上の例だとfancを実行する場合)はどのようにすればいいのでしょうか?

自分で色々調べてためしてみましがた、尽くコンパイルエラーがでます……orz
368
(1): 2009/12/11(金) 14:00:00 AAS
boost::thread thr_tmp(boost::bind(&Hoge::fanc, &tmp, 10, 20));

でx=10, y=20になるが

あとfancじゃなくてfuncではなかろうか
369: 2009/12/11(金) 14:02:12 AAS
368はVC++2008ね。
上記でだめならコンパイラ依存問題かも
370: 2009/12/11(金) 14:19:44 AAS
>>368
解決しました。
ありがとうございました!
371: 2009/12/12(土) 09:02:35 AAS
fack youのコピペ思い出した。
372: 2009/12/12(土) 10:10:20 AAS
仲良くなった。
373
(1): 2009/12/13(日) 09:58:14 AAS
Boost 1.40 + VC++2008 にて

#include <boost/serialization/static_warning.hpp>
template<typename T>
struct hoge {
    static int const i = 100;
    static bool const b = i < 0;
    BOOST_STATIC_WARNING(b);
};
typedef hoge<int> hoge_t;
hoge_t h;

hoge がテンプレートだと BOOST_STATIC_WARNING が働かない。(警告が出ない)
hoge が非テンプレート(ただの struct )だと意図通り警告が出る。
BOOST_STATIC_WARNING 以外でも、boost::mpl::print などでも同様。
374: 2009/12/13(日) 10:23:51 AAS
struct hoge {
 static int const i = 100;
 static bool const b = i < 0;
 hoge() { BOOST_STATIC_WARNING(b); };
};

これでどうだろう
375: 2009/12/14(月) 00:16:47 AAS
勉強会のshared_ptrの発表聞きたいんだけど「えっと」が強烈に心を折りにくる。
376: 2009/12/14(月) 00:23:33 AAS
しばらく聞いてたら慣れたよw
377
(2): 2009/12/14(月) 14:17:23 AAS
lexical_castってwstring型にキャストしようとするとエラーがでるのですが……。

stirng str;
std::wstring wstr;

wstr = boost::lexical_cast<std::wstring>(str);

lexical_cast.hpp(590) : error C2679: 二項演算子 '<<' : 型 'const src' の右オペランドを扱う演算子が見つかりません (または変換できません)。
1> c:\program files\microsoft visual studio 9.0\vc\include\ostream(653):
'std::basic_ostream<_Elem,_Traits> &std::operator <<<wchar_t,std::char_traits<wchar_t>>(std::basic_ostream<_Elem,_Traits> &,const char *)' [引数依存の照合を使用して検出しました]、
1> with
1> [
1> _Elem=wchar_t,
1> _Traits=std::char_traits<wchar_t>
1> ]

以下似たようなメッセージがずらずらと……。

ちなみに最終的にやりたいことはstring型の文字列をwstring型にキャストし処理した後、
const char*に変換して、関数にわたすことです。
wstr.c_str()ではwchar_t型に成ってしまうので、いったんstringに変換してからc_str()でなんとかしようと方針を立てたらエラーがでて……orz
378
(1): 2009/12/14(月) 14:37:08 AAS
lexical_castを読むと、charかwchar_tのどっちか限定で処理するっぽいから
stringとwstringの同時使用ができないのでは
379: 2009/12/14(月) 14:40:26 AAS
>>377
>stirng str;
string str
ですね。
本筋ではないのですが一応元ソースではちゃんとしてます。
380: 2009/12/14(月) 14:44:19 AAS
>>378
つまり、stringをwstringにキャストしようとしても、
そもそもlexical_cast内ではふたつを同じ型として扱ってるので、
キャストできないということですか……?
381
(1): 2009/12/14(月) 14:45:55 AAS
引数からどちらの文字列型を使うか判定しているので、その結果生成される
内部処理ストリームがWide変換/逆変換をサポートしていない限り非対応ということに。
382: 2009/12/14(月) 14:55:34 AAS
>>381
なるほど、ありがとうございました。

設計をみなおすか……。
全部2バイト文字にしたあと処理できたら楽になるのになぁ。
ユニコードは三点リーダーが汚くなるから使いたくないし……。
383: 2009/12/14(月) 15:07:30 AAS
本件とずれるけど、lexical_castのドキュメント
外部リンク[htm]:www.boost.org
にあるサンプル

>>void log_errno(int yoko)
>>{
>> log_message("Error " + boost::lexical_cast<std::string>(yoko) + ": " + strerror(yoko));
>>}

yoko?
要項?違うか
384
(1): 2009/12/14(月) 21:23:32 AAS
Boost.Propertytree
というlibraryがあるらしいが、もう正規のものなの?
いつの間に採用されたんだ。
385: 2009/12/15(火) 18:38:35 AAS
1.41から正規
386: 2009/12/15(火) 18:40:34 AAS
おお、では勉強しなきゃなるまいな。
ありがとう。
387: 2009/12/15(火) 19:04:02 AAS
C#のプロパティみたいなものかと思ったら、streamの類か。
388: 2009/12/16(水) 22:37:56 AAS
>384
余談だけど
外部リンク:www.boost.org
ここの First Release 見ればいつから正規かは分かる。
しかし Property Tree のレビューって 2006 年 4 月だったんだな。
389: 373 2009/12/17(木) 08:08:52 AAS
MPL_WARNING と STATIC_WARNING を自作してみた。
Boost.Serialization の BOOST_STATIC_WARNING と比較して、
>>373のような条件下でも警告が働くし、
クラステンプレート内でも typename 無しで依存名を書ける。
VC++2008以外の環境は知らん。

#include <boost/mpl/bool.hpp>
#include <boost/mpl/assert.hpp>
#include <boost/preprocessor/cat.hpp>

#define MY_MPL_WARNING(PRED) \
    static bool const BOOST_PP_CAT(mpl_warning_, __LINE__) = sizeof(boost::mpl::assert_arg((void (*) PRED)0, 1))

#define MY_STATIC_WARNING(B) \
    MY_MPL_WARNING((boost::mpl::bool_<B>))

// テスト
template<typename T>
struct hoge {
    static int const i = 100;
    static bool const b = i < 0;
    MY_STATIC_WARNING(b); //おk
    MY_STATIC_WARNING(boost::is_float<boost::mpl::identity<T>::type/*依存名*/>::value); //おk
};
typedef hoge<int> hoge_t;
hoge_t h;
390: 2009/12/17(木) 12:20:07 AAS
unordered_setでgreaterを使ってみたのですが、eraseが失敗しています。
やり方が悪いのでしょうか? どなたかご教授お願いします。

typedef boost::unordered_set<int,boost::hash<intgreater<int>> u_set_g;
u_set_g data;
data.insert(1);
data.insert(2);
for(u_set_g::iterator it=data.begin(), itEnd=data.end(); it!=itEnd; it++)
cout<<*it<<endl;
data.erase(2);
for(u_set_g::iterator it=data.begin(), itEnd=data.end(); it!=itEnd; it++)
cout<<*it<<endl;
391
(1): 2009/12/17(木) 12:53:12 AAS
そこはequal_to<T>を指定するところだから
392
(1): 2009/12/17(木) 13:48:31 AAS
クラスSからクラスTにキャスト可能であるかどうかを
判定するメタ関数はありますか?
is_castable_into<S, T>::value
的な使い方ができる物です。
393: 2009/12/17(木) 13:50:37 AAS
>>391
おぉ、勘違いしておりました。
unordered_setはstd::setの様に初めから逆ソートは出来ないのでしょうか?
394: 2009/12/17(木) 13:53:12 AAS
unordered の意味、わかってるの?
395
(1): 2009/12/17(木) 13:59:39 AAS
>>392
is_convertible<From, To>
396: 2009/12/17(木) 14:09:56 AAS
>>395
ありがとうございます。
397: 2009/12/17(木) 14:43:00 AAS
実装を知らずにコンテナを使うのは問題だな
398: 2009/12/17(木) 14:45:23 AAS
完璧に知る必要は全く無いが、原理くらいは知らないとな…
399: 2009/12/17(木) 14:49:03 AAS
実装以前に使うクラスの名前くらいちゃんと読めって話だよ
400: 2009/12/17(木) 16:11:12 AAS
>>377
stringの中身がutf8ならto_utf8、from_utf8で
wstringと相互変換できるぞ。
sjisは扱えないけど、ASCIIとは互換性がある。
401
(2): 2009/12/17(木) 17:22:44 AAS
boost::numeric_castを使おうとすると、converter_policies.hppというファイルで、
ceilとfloorのオーバーロード関数の呼び出しを解決することができないという
エラーが出るのですが、何か解決策はありますでしょうか?
環境はVisual C++ 2008、Boost 1.41.0です。
402
(1): 2009/12/18(金) 01:47:54 AAS
>>401
エラーメッセージは正確に。
コピペ推奨。
403
(1): 2009/12/18(金) 04:29:39 AAS
boostのいくつかのライブラリでは#pragma onceが使われてるけど、
#if defined(_MSC_VER) && _MSC_VER >= 1200 /* VC++ 6.0*/
#if defined(_MSC_VER) && _MSC_VER >= 1020 /* VC++ 4.2*/
の二通りがある。
gccでもたしか#pragma once使えたはずだけど、
MSVC限定なのは何か理由があるんだろうか?
404: 2009/12/18(金) 05:19:05 AAS
GCCは一応対応してるけど使用は非推奨で警告でたりするからじゃね
405: 2009/12/18(金) 05:39:26 AAS
VCにpragma指令を入れてるのは単にコンパイルの高速化の為かと
GCCはインクルードガードだけで十分
406: 403 2009/12/18(金) 06:17:18 AAS
ああそうか、そういえばgccはインクルードガード検知すると自動で
#pragma once相当の処理をするとかどこかで読んだ。納得。
407
(2): 2009/12/18(金) 13:55:42 AAS
>>402
失礼しました。
error C2668: 'ceil' : オーバーロード関数の呼び出しを解決することができません。(新機能 ; ヘルプを参照)
c:\program files (x86)\boost_1_41_0\boost\numeric\conversion\converter_policies.hpp
error C2668: 'floor' : オーバーロード関数の呼び出しを解決することができません。(新機能 ; ヘルプを参照)
c:\program files (x86)\boost_1_41_0\boost\numeric\conversion\converter_policies.hpp 41 karaokeThread
です。
408: 2009/12/18(金) 14:15:33 AAS
karaokeThread があやしいな。
409: 2009/12/18(金) 14:17:44 AAS
>>407
まだ変に省略してないか?
VC++ だとテンプレート引数の情報とかエラーメッセージに出たような・・・。

常套手段だけど、同じエラーを出す最小のソースを作ってみるといい。
410: 2009/12/18(金) 14:24:13 AAS
>>407 外部リンク:ja.lmgtfy.com
411: 401 2009/12/18(金) 22:53:49 AAS
自己解決しました。どうやらifstream.tellg()の戻り値を変換させるときに
のみエラーが出るようなので、そこだけstatic_castにしました。
どうもお騒がせしました。
412
(1): 2009/12/19(土) 02:08:38 AAS
更新しました。今回初めてgraph_parallelのlink=shared, runtime-link=sharedのビルドが可能になり、
同じく初めてビルドエラー無しでフルビルドが出来ました。
外部リンク:booster.x0.to
以下更新内容の一部
[Program_options]
consistent handling of namespace std
[Spirit]
unicode support
Spirit: fixed include guard conflict (fixes #3724)
[Graph]
Factored out declspec code; added BOOST_GRAPH_SOURCE where necessary
[Iostream]
If a write is going to go past the end of the restricted area,
write up to the end before throwing an exception.
[Uuid]
Fixed name_generator for different sizes of wchar_t
[Serialization]
1. Fixed memory leak in shared_ptr loading
2. Fixed error in polymorphic archive implementation
Speed up loading of ordered collections
[Smart_ptr]
Avoid static destruction order issues with quick_allocator.
[Proto]
fix BOOST_PROTO_EXTENDS to work with elaborated types
[Xpressive]
disable proto's unary operator& for basic_regex objects, references #3712
[Fusion]
corrected reverse_view
[Gil]
Added gil namespace prefix to at_c<...> calls.
[Regex]
Symbian patches. Fixes #3764. Fixes #3763.
413: 2009/12/19(土) 05:04:38 AAS
>>412
いつも乙。
ところで列記してある更新内容のリストはどこで参照できますか?
414
(1): 2009/12/19(土) 06:58:03 AAS
全ての更新内容はrarファイル内のchangelog.txtに記してありますが、
TortoiseSVN上の更新情報をテキストデータとして羅列した状態ですのであまり読み易くはありません。
公式サイトの下記ページにも更新情報がありますが、sandboxの更新と一緒になっている為少々読み辛いです。
Boost-Commit mailing page: By Subject
外部リンク[php]:lists.boost.org

ローカルリポジトリを構築して管理ソフトからログを読むのが、一番整頓されていて分かり易いと思います。
415
(3): 2009/12/20(日) 05:18:17 AAS
>>414
ありがとうございます、参考になります。

ところで、VC9 にて
#include <boost/utility/value_init.hpp>
#include <boost/wave/util/cpp_include_paths.hpp>
をこの順にインクルードするとコンパイルエラーになります。
>e:\library\c++\boost\boost_1_42_vc2008_svn58453\boost\aligned_storage.hpp(79) : error C2872: 'detail' : あいまいなシンボルです。
> 'boost::detail' である可能性があります。
> または 'boost::multi_index::detail'
>e:\library\c++\boost\boost_1_42_vc2008_svn58453\boost\aligned_storage.hpp(53) : error C2872: 'detail' : あいまいなシンボルです。
> 'boost::detail' である可能性があります。
> または 'boost::multi_index::detail'

おそらく aligned_storage.hpp 内のソースで
boost::detail::aligned_storage のスコープで detail::ほげほげ と(boost::detail のつもりで)しているので
他スコープの detail 名前空間と衝突しているのかと。
Boost 1.40〜1.42 で確認。
416
(2): 2009/12/20(日) 07:18:45 AAS
>415
gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) + Boost 1.40 で再現しない。
Boost trac の ticket には無さげ。
恐らく↓あたりの VC のバグだと思う。
VC++ 8.0 reports unexisting ambiguity in certain context having a using directive
外部リンク[aspx]:connect.microsoft.com

あと、細かいけど 1.42 は未リリースだから現時点(あるいは特定リビジョン)での trunk でという表現が
正しいと思う。
417: 2009/12/20(日) 09:50:29 AAS
>>416
ありがとうございます、参考になります。
418
(1): 415 2009/12/20(日) 15:02:25 AAS
>>415 ticket に挙げたいけど英語力皆無で無理げ。

俺ライブラリのヘッダをまとめてインクルードしたのをコンパイルしたら、
条件によって出たり出なかったりするようなエラーが出るわ出るわ。

VC9 + Boost (1.40 ~ svn58453)
・ boost::operators を使ったクラス Operatable を定義
・ 適当なテンプレートクラス Overloaded<T> を定義
・ Overloaded<T>& を引数にとる、グローバルな & (アドレス)演算子オーバーロードの関数テンプレートを定義
・ boost::throw_exception( ) の使用
この条件が揃うとエラーが出る。
>e:\library\c++\boost\boost_1_42_vc2008_svn58453\boost\throw_exception.hpp(69) : error C3767: '&': 候補の関数はアクセス可能ではありません。
> 'e:\library\c++\boost\boost_1_42_vc2008_svn58453\boost\operators.hpp(260)' の friend 関数である可能性があります : '&' [引数依存の照合を使って検出される可能性があります]
> e:\project\vc9\test2\test2\main.cpp(22) : コンパイルされたクラスの テンプレート のインスタンス化 'void boost::throw_exception<std::exception>(const E &)' の参照を確認してください
> with
> [
> E=std::exception
> ]

以下、調べたかぎり最小のコード。

#include <exception>
#include <boost/operators.hpp>
#include <boost/throw_exception.hpp>
class Operatable : private boost::operators<Operatable> { };
template<typename T> class Overloaded { };
template<typename T> Overloaded<T>* operator&(Overloaded<T>& v) { return 0; }
void ThrowException() { boost::throw_exception(std::exception()); }
// ThrowException() の代わりにこの関数を定義してもエラーになる
// どうやら boost::exception_detail::clone_impl<T> の使用がまずいらしい
//void TestExceptionDetail() { boost::exception_detail::clone_impl<std::exception> c((std::exception())); }
419: 2009/12/20(日) 16:53:44 AAS
追記。
boost::operators<Operatable> の部分が boost::integer_arithmetic<Operatable> などなら問題ない。
どうやら boost::andable<Operatable> が問題らしい。
でも andable って (Lhs & Rhs) の形だよね?
アドレス演算子との絡みでおかしくなるのがようわからん。

C3767 について↓でもそれらしい話が出てるけど(ADL関連)なんとも。
外部リンク:www.freeml.com
420: 2009/12/20(日) 22:53:17 AAS
>418
> >>415 ticket に挙げたいけど英語力皆無で無理げ。
大丈夫だ。我々には C++ という共通語がある!

とりあえず boost/wave/util/cpp_include_paths.hpp の中にある using namespace boost::multi_index; 直下の
get (2ヶ所)を boost::multi_index::get に qualify してやれば #include のみの場合はエラーは出なくなったけど
これで正常動作するのかは分からない。
要因としては >416 のバグのせいっぽいね。

>以下、調べたかぎり最小のコード。
やっぱり gcc version 3.4.4 (cygming special, gdc 0.12, using dmd 0.125) + Boost 1.40 で再現しない。

実際のコードだとうまく行かないかもしれないけど、
namespace my {
class Operatable : private boost::operators<Operatable> { };
template<typename T> class Overloaded { };
template<typename T> Overloaded<T>* operator&(Overloaded<T>& v) { return 0; }
void ThrowException() { boost::throw_exception(std::exception()); }
}
って感じで namespace に閉じ込めたら通ったりしない?
421
(1): 2009/12/22(火) 21:38:43 AAS
すみません、質問があるんですが
今現在uBLASライブラリを使ってLU分解を行っています
しかし,同じ動作を数百回回してると下記のエラーが出てしまいます
毎回違うループ回数でエラーが起きているみたいなんですが,何故起こってしまうのかよくわかりません
分かる方いらっしゃいますか?

*エラーメッセージ
Check failed in file /cygdrive/D/boost_1_39_0/boost/numeric/ublas/lu.hpp at line 276:
detail::expression_type_check (prod (triangular_adaptor<const_matrix_type, upper> (m), e), cv2)
Error while dumping state (probably corrupted stack)
422: 2009/12/22(火) 21:57:39 AAS
probably corrupted stack
423
(1): 2009/12/22(火) 21:59:52 AAS
よく分からんが、uBLASは1.40でlu.hppも含めてアップデートされているので
1.40で試してみたらどう
424: 2009/12/22(火) 22:22:56 AAS
>>423
ありがとうございます
とりあえず、アップデートして行ってみましたが状況変わらずでした
LU分解の後退代入で配列の不正アクセスか,配列が破壊されてるかどちらかが起きてるのはわかるんですが
毎回違うタイミングで起きるので原因が良くわからないです
代入する値はループ毎に変わりますが乱数を使ってるわけではないのでエラーを吐き出すとしたら同じループ回数だとは思うんです
425: 2009/12/22(火) 22:39:03 AAS
取り敢えず、デバッグして発生条件を絞っていくしかないな
426: 2009/12/23(水) 01:01:44 AAS
まさかとは思うがuBLAS最新はVC系はサポートされてないぞ。
427: 2009/12/23(水) 01:06:07 AAS
ビタミンC?
428
(1): 2009/12/23(水) 05:00:13 AAS
>>421
もうエラーの内容も覚えていないんだけど
uBLASつかってるシングルスレッドのプログラムを
問題を複数に分けてマルチスレッドで分散してやるようにしたらわけのわからないエラーが出始めた
納期があったから細かく調べずにマルチプロセスで逃げたw

まったく参考にならんけど思い出した
429: 2009/12/26(土) 00:17:37 AAS
更新しました。
外部リンク:booster.x0.to
以下更新内容の一部
[Regex]
Improve recursion branch-prediction.
[Spirit]
Spirit: comment typo fixes
Spirit: minor test adjustment
Added note to fix the thing
Spirit: expanded the quick hack to include strings
Spirit: added new Karma example
Spirit: little endian binary test fix
[Multi_index]
handled serialization of non default constructible values
[Selialization]
Fix plugin test/demo
430: 2009/12/29(火) 17:07:19 AAS
Webを検索していて驚きました。
外部リンク[hpp]:webdocs.cs.ualberta.ca
ここに
boost::complex
というテンプレートがあるのですが、これはなんでしょうか?
昔std::complexが標準にない時代にboostに同等のものがあったとか、
そういうことはありますか?
431: 2010/01/02(土) 09:11:03 AAS
初歩的な質問で恐縮なのですが…

win2000+VisualStudio2005+Microsoft Platform SDK for Windows Server 2003 SP1で、
Boost1.41をダウンロードしてきてbootstrapとbjamを実行し、
外部リンク[cpp]:www.boost.org
を試しにコンパイルしてみたのですが、

LINK : fatal error LNK1104: ファイル 'libboost_filesystem-vc80-mt-gd-1_41.lib' を開くことができません。

というエラーが出ます。
指定されたファイルはC:\Boost\bin.v2\libs\filesystem\の下層にちゃんとあるのですが、
これはコンパイラにパスが通ってないということでしょうか?
解決方法を知っている方がいましたら教えていただきたいです。
現在のVisualStudioの設定は以下のとおりです。

オプション→プロジェクトおよびソリューション→VC++ディレクトリ→インクルードファイルにC:\Boostを追加
ライブラリファイルにC:\Boost\bin.v2\libsを追加
432: 2010/01/02(土) 10:08:41 AAS
ファイル名が微妙に違ったりしてないかい
433: 2010/01/02(土) 11:58:11 AAS
>指定されたファイルはC:\Boost\bin.v2\libs\filesystem\の下層にちゃんとあるのですが、
>(中略)
>ライブラリファイルにC:\Boost\bin.v2\libsを追加
bin.v2 の下は未インストール状態のものなのでその下層のパスまでちゃんと指定するか、install して
一ヶ所にまとめられたディレクトリを指定するかどっちかだと思われ。
434: 2010/01/02(土) 12:34:19 AAS
おいおい、bin.v2はビルド時の中間ファイル置き場だろ。
bjamのオプション次第だけど、普通はstage\libだろ。
435: 2010/01/02(土) 16:39:47 AAS
431です。
ライブラリファイルをC:\Boost\stage\libに変更したところ、コンパイルが通るようになりました。
回答してくださった方々、本当にありがとうございます。
436
(3): 2010/01/03(日) 11:53:28 AAS
boostからMPICH2を使ってみようと思うんだが、
MPICH2(Win32 64bit)をインストールしても
binフォルダにmpichコマンドやmpeコマンドが見当たらない。
そういうもの?

外部リンク[html]:www.kmonos.net
ここの手順そのままで問題ない?
437: 2010/01/03(日) 18:56:13 AAS
>>436
俺はやったことないからわからんが、そのページに
>MPICH2 では手元の環境ではうまく動かず…。
って書いてあるのに、そのままで問題ないかと言われても…。
438: 2010/01/04(月) 13:41:42 AAS
>>436
MPIの使い方はよく分かりません。
Boost 1.41 + MPICH2で試してみましたが、ビルドまでは通るものの実行時に例外エラーが発生しますね。
439: 2010/01/04(月) 13:58:53 AAS
更新しました。Boost.MPIにつきましては、今後MPICH2以外の使用を検討致します。
外部リンク:booster.x0.to
以下更新内容の一部
[Fusion]
associative forward iterators in example and docs
[Random]
Attempt to fix ranlux failures
Try to get more information out of the failing tests.
[Spirit]
Spirit: fixing a problem in sequences if the attribute is a container of containers, more test cases
Spirit: accounting for changed fusion::fold parameter sequence in new Boost version
Spirit: fixed SA detection for karma::maxwidth
[Iostreams]
Don't throw if seeking the end of the restricted area of a file.
Add dummy returns after calling throw_exception.
[Type_traits]
Fixes #3800.
[Circular_buffer]
circular_buffer: constant complexity of clear method and destructor
[Asio]
Windows needs the OVERLAPPED structure to be valid until both the initiating
function call has returned and the completion packet has been delivered.
Don't block signals while performing system calls, but instead restart the
calls if they are interrupted.
Add boost_ prefix to extern "C" thread entry point function. Refs #3809.
Add a workaround for some broken Windows firewalls that make a socket
appear bound to 0.0.0.0 when it is in fact bound to 127.0.0.1.
[Functional]
Rename namespace BOOST_HASH_DETECT_FLOAT_FUNCTIONS to lower case for consistency.
[Uuid]
optimized seed_rng
optimized string_generator
440
(2): 2010/01/05(火) 12:51:23 AAS
はじめまして。Boost.MultiArray の設計について教えていただきたいのですが、
multi_array_ref や const_multi_array_ref は何のために設計されているのでしょうか?
参照では問題がある場合に使うことを想定しているのでしょうか?
441
(1): 2010/01/05(火) 16:41:32 AAS
参照の参照を内部で回避してるんじゃないかとエスパー
442: 440 2010/01/05(火) 19:07:57 AAS
>>441
どうもありがとうございます。やっぱりそうなんですかね。
443
(1): 2010/01/05(火) 19:28:58 AAS
実装読まずに適当に推測すると
名前的にはauto_ptrに対するauto_ptr_refとかと同じ用途なんじゃない?
444
(1): 2010/01/05(火) 19:33:56 AAS
用途的には、multi_array_refはトラディショナルな配列のポインタを渡してmulti_arrayとして扱うためのラッパー。
445: 2010/01/05(火) 20:00:51 AAS
fucktoryパターンってなに?><
446: 2010/01/05(火) 20:11:44 AAS
fucker
447: 2010/01/05(火) 20:12:21 AAS
子作りでインスタンスを増やすパターン
448: 2010/01/05(火) 20:14:58 AAS
>>443
> 実装読まずに適当に推測すると
> 名前的には
現実的にはこれができるのが一番いいよね。
むずかしいけどさ。

俺 名前づけのセンスないし。
449: 2010/01/06(水) 22:48:22 AAS
「画像を扱うライブラリが増える」と聞いて、bimapだと勘違いした人、正直に手を上げなさいノシ
450
(1): 2010/01/06(水) 23:52:48 AAS
Boost.SpiritはV2になって、
結局 何が良くなったのでしょうか?

コンパイル速度は悪くなったと思いますが、
実行時速度とかでしょうか?
451
(1): 2010/01/07(木) 12:19:06 AAS
Spiritのソースのメンテ性(Spiritを使ったソースではない)が上がったんじゃなかったか。
452: 2010/01/07(木) 12:43:56 AAS
SpiritとExpressiveってコア統合中とか聞いたけど、最近のでは実現してるの?
453
(1): 2010/01/07(木) 13:08:45 AAS
shared_ptrで、別のshared_ptrに参照させる際に
weak_ptrのlock関数経由(もしくはshared_from_this関数)と
'=' での直接代入経由で参照カウントの挙動に変化がなかったけど
これってどっちでもいいの?

BoostはVer1_40_0です。
454: 2010/01/07(木) 13:11:05 AAS
>>453
あたりまえじゃないか。

挙動が変わるはずだという理屈があるなら言ってみれ。
455: 2010/01/07(木) 13:21:25 AAS
直接代入が参照のコピーか移動かの仕様が自分の中でちょっと疑問でして、
実行結果を見れば一目了然なんですが、

これですっきりしました、有難うございました。
456: 450 2010/01/07(木) 20:11:07 AAS
>>451
ありがとうございます。
そうですか。

・・・でもまだ正直v1よりバグが多いとかですかね?
457
(1): 2010/01/07(木) 20:42:56 AAS
Spiritは毎日のように更新されてるので、バグ多しっつーより未完成ってイメージが
458: 2010/01/07(木) 20:45:32 AAS
>>457
そうなんですか。
まさかのこれ以上の機能拡充とかですかね。
ありがとうございます。
459: 2010/01/08(金) 21:17:53 AAS
更新しました。Boost.MPIのビルドにはMPICH 1.2.5を使用しましたが、>>436のサンプルは上手く動作しません。
外部リンク:booster.x0.to
以下更新内容の一部
[Unordered]
Formatting changes, mostly to fit within 80 characters.
Also, some C casts converted to static_cast.
[Spirit]
Spirit: added concept checks for qi API functions, fixed qi::match functions, added basic_istream_iterator
Spirit: added karma::auto_()
Spirit: added missing top level include file
Spirit: fix for one of the multi_pass policies
Spirit: added more tests for Karma auto_
Spirit: adding the matches.hpp[] directive
Spirit: adding tests for the matches[] directive
[Asio]
Include boost/limits.hpp rather than <limits to support older compilers.
Refs #3743.
Drop back to second_clock if microsec_clock is unavailable. Refs #3743.
Use sockatmark if SIOCATMARK is not defined. Refs #3743.
Disable iostreams-related functionality if BOOST_NO_IOSTREAMS is defined. Refs #3743.
Apply fix for reported excessive CPU usage under Solaris. Refs #3670.
Support platforms that don't define INET6_ADDRSTRLEN. Refs #3743.
[Wave]
Wave: updating copyrights, fixing issues introduced by latest changes to multi_pass.
[Regex]
Fix bug that effects recursive expressions combined with repeats.
Speed up the code a little,
and stop swapping stream buffers around in case that's the cause of some test failures.
[Iostreams]
More unreachable returns. This should only be a temporary workaround.

亦、libs_for_build_boost.rarも、bjam.exeをrev.58785にアップデート致しました。
460: 2010/01/08(金) 22:08:02 AAS
と、改めてMPICH2の使い方を調べてテストし直してみましたところ、
x32, x64双方共正常に動作しました。
管理者権限でコマンドプロンプトを起動して、

smpd -install
mpiexec -n 8 test.exe

です。
Boost.MPIは次回のビルドからまたMPICH2仕様に戻します。
461: 2010/01/08(金) 22:18:17 AAS
あ、mpiexecよりGUIであるwmpiexecから起動した方が簡単ですね。
462: 440 2010/01/09(土) 14:59:43 AAS
>>444
なるほど!仕様を読んでみると確かにそういう風に使えるんですね、というか書いてありますね…見落としてました…すみません。
463
(1): [―{}@{}@{}-] 2010/01/09(土) 17:03:30 AAS
boost::lexical_cast<int>("0x12345");のように、0xがついている文字列が
変換できないのですが、うまく変更できるようにするにはどうすればいいでしょうか?
464
(1): 2010/01/09(土) 17:34:08 AAS
lexical_castは誰もが待ち望んでいて、そしてガッカリした代物だよな・・・
465
(1): 2010/01/09(土) 17:34:14 AAS
差し替え更新しました。Boost.MPIはMPICH2 1.2.1仕様に戻しました。
外部リンク:booster.x0.to
以下追加更新内容
[Spirit]
Spirit: fixing attribute handling in sequences
[regex]
Change name of extern "C" function so it's prefixed with "boost_"

>>463
lexical_castは16進数の変換には対応しておりませんので、この辺りは如何でしょう。
文字列を数値に変換する関数 (CRT)
外部リンク[aspx]:msdn.microsoft.com
466
(1): [―{}@{}@{}-] 463 2010/01/09(土) 17:41:23 AAS
>>464
>>465
ありがとうございます.
lexical_cast は過去に 1e+8 のような形式を変換できずがっかりした記憶が
あるのですが、いつの間にかできるようになってて驚きもしました.
0x にもいつか対応してくれると信じて待つとします.

外部リンク:stackoverflow.com
467: 2010/01/09(土) 17:55:57 AAS
いや、cinなどbasic_istreamでも(hex指定しない限り)十六進法の入力はできないのだから、
いつまで待っても、lexical_castでできるようにはならないだろう。
468
(1): 2010/01/09(土) 22:33:27 AAS
>466
そのリンクの最後の回答をちょい修正して

#include <iostream>
#include <boost/lexical_cast.hpp>

template<typename T>
class from_hex // For use with boost::lexical_cast
{
    T value;
public:
    operator T() const { return value; }
    friend std::istream& operator>>( std::istream& is, from_hex<T>& outValue )
    {
        is >> std::hex >> outValue.value;
        return is;
    }
};

int main(void)
{
    std::cout << boost::lexical_cast<from_hex<int> >("0x12345") << std::endl;
    return 0;
}
でいいんじゃね?
469
(1): 2010/01/09(土) 22:37:51 AAS
>>468
0x ついてるときはそれでいいけどついてないときには使えないからな〜
中の人の対応を待ちたい
470: 2010/01/09(土) 23:23:39 AAS
>469
codepad だと通るんだが。
外部リンク:codepad.org
471: 2010/01/10(日) 06:39:11 AAS
>>428
関数の中でグローバルポインタの割り当て/開放をしてるのかね。
472: 2010/01/10(日) 14:55:21 AAS
strtol・strtoulなら文字列の書式から進数の自動判定が行われるんだし、
CRT使うと死ぬ体質じゃないんならそれ使って実装しときゃいいんでは。
1-
あと 529 レスあります
スレ情報 赤レス抽出 画像レス抽出 歴の未読スレ

ぬこの手 ぬこTOP 0.021s