Skip to content

**** ****

for my bad memories..

Posts Tagged ‘boost’

[태그:] boost

다음과 같은.. 스트링이 있을때.. 8,8,8,8,8,8,8 자리로 끊어서 읽고 싶은데.. sscanf는 공백을 무시고 읽어.. 원하는데로 동작되지 않음.. 하여 찾다보니.. boost에 offset_separator 라는것이 있음.. 테스트 하는 김에 속도 비교를 해봄.. sscanf의 경우.. (대략 88.637946초) boost의 offset_separator (대략 72.378287초) 역시.. 구글링을 해보면 sscanf의 속도가 느리다고 하는데.. 맞는가봄.. 일단 boost의 경우 자리수를 지정해서 그 만큼 짤라내는게 아주 잘 되고.. […]

[태그:] boost

MinGW상에서 CGAL 빌드 방법. 1) download boost sources and compile it (I use boost 1.47.0): 2) build CGAL libraries (I use cgal 3.9): 혹시.. double.h 파일에서 에러가 나면 다음을 추가. 3) build demos and examples (if checked in cmake):

[태그:] boost

몇번의 시도끝에 얻은 MinGW 용 Boot 빌드 방법. cmd 창에서 아래를 입력 다음 32비트의 경우.. 64비트의 경우는..

[태그:] boost

홈페이지: http://www.boost.org/ 범용으로 빈번하게 사용되는 작은 유틸리티들을 제공하려는 프로젝트. 그래프, 쓰레기 수집 기능을 가진 포인터, 파일시스템, 수학 연산들, 쓰레드, 스캐너와 LL파서 등 유용한 기능을 가진 라이브러리들을 많이 확보하고 있음. Boost provides free peer-reviewed portable C++ source libraries. We emphasize libraries that work well with the C++ Standard Library. Boost libraries are intended to be widely […]