├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── iGDA.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── iGDA.xccheckout │ └── xcuserdata │ │ └── zhixingfeng.xcuserdatad │ │ ├── IDEFindNavigatorScopes.plist │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── zhixingfeng.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── iGDA.xcscheme │ └── xcschememanagement.plist ├── include ├── catch.hpp ├── data_type.h ├── file.h ├── headers.h ├── stl.h └── utils.h ├── install.sh ├── script └── igda_pipe_ont ├── src ├── .DS_Store ├── main.cpp ├── misc │ ├── basic.h │ ├── cmpreads.h │ ├── cmpreads_multithread.cpp │ ├── cmpreads_multithread.h │ ├── condfreq.h │ ├── correctreads.h │ ├── dist.h │ ├── graph.cpp │ ├── graph.h │ ├── io.h │ ├── m5tofa.h │ ├── merge_data.cpp │ ├── merge_data.h │ ├── misc.h │ ├── permute_reads.cpp │ ├── permute_reads.h │ ├── pileup.h │ ├── seqopt.h │ ├── sort_order.h │ ├── statistics.h │ ├── var2vcf.cpp │ └── var2vcf.h └── modules │ ├── .DS_Store │ ├── aligncoder │ ├── aligncoder.cpp │ ├── aligncoder.h │ ├── aligncodersnv.cpp │ └── aligncodersnv.h │ ├── alignreader │ ├── .DS_Store │ ├── alignreader.cpp │ ├── alignreader.h │ ├── alignreaderm5.cpp │ ├── alignreaderm5.h │ ├── alignreadersam.cpp │ └── alignreadersam.h │ ├── assemble │ ├── assembler.cpp │ └── assembler.h │ ├── detectsingle │ ├── detectsingle.cpp │ ├── detectsingle.h │ ├── detectsinglesnv.cpp │ └── detectsinglesnv.h │ ├── dforest │ ├── dforest.cpp │ ├── dforest.h │ ├── dforestsnvstl.cpp │ └── dforestsnvstl.h │ ├── errormodel │ ├── errormodel.cpp │ ├── errormodel.h │ ├── errormodelsnv.cpp │ └── errormodelsnv.h │ ├── modules.h │ └── rsm │ ├── rsmsnv.cpp │ └── rsmsnv.h ├── test ├── test_AlignCoder.cpp ├── test_AlignReader.cpp ├── test_assembler.cpp ├── test_detectsingle.cpp ├── test_dforest.cpp ├── test_dforeststxxl.cpp ├── test_errormodel.cpp ├── test_graph.cpp ├── test_misc.cpp ├── test_pcg.cpp ├── test_performance.cpp ├── test_permute_reads.cpp ├── test_pileup.cpp ├── test_prob.cpp ├── test_rsm.cpp └── test_stxxl.cpp ├── tools ├── boost │ └── include │ │ └── boost │ │ ├── algorithm │ │ └── string │ │ │ ├── case_conv.hpp │ │ │ ├── classification.hpp │ │ │ ├── compare.hpp │ │ │ ├── concept.hpp │ │ │ ├── config.hpp │ │ │ ├── constants.hpp │ │ │ ├── detail │ │ │ ├── case_conv.hpp │ │ │ ├── classification.hpp │ │ │ ├── find_format.hpp │ │ │ ├── find_format_all.hpp │ │ │ ├── find_format_store.hpp │ │ │ ├── find_iterator.hpp │ │ │ ├── finder.hpp │ │ │ ├── formatter.hpp │ │ │ ├── replace_storage.hpp │ │ │ ├── sequence.hpp │ │ │ ├── trim.hpp │ │ │ └── util.hpp │ │ │ ├── find_format.hpp │ │ │ ├── find_iterator.hpp │ │ │ ├── finder.hpp │ │ │ ├── formatter.hpp │ │ │ ├── iter_find.hpp │ │ │ ├── predicate_facade.hpp │ │ │ ├── replace.hpp │ │ │ ├── sequence_traits.hpp │ │ │ ├── split.hpp │ │ │ ├── trim.hpp │ │ │ └── yes_no_type.hpp │ │ ├── aligned_storage.hpp │ │ ├── any.hpp │ │ ├── archive │ │ ├── archive_exception.hpp │ │ ├── basic_archive.hpp │ │ ├── basic_binary_iarchive.hpp │ │ ├── basic_binary_iprimitive.hpp │ │ ├── basic_binary_oarchive.hpp │ │ ├── basic_binary_oprimitive.hpp │ │ ├── basic_streambuf_locale_saver.hpp │ │ ├── basic_text_iarchive.hpp │ │ ├── basic_text_iprimitive.hpp │ │ ├── basic_text_oarchive.hpp │ │ ├── basic_text_oprimitive.hpp │ │ ├── basic_xml_archive.hpp │ │ ├── basic_xml_iarchive.hpp │ │ ├── basic_xml_oarchive.hpp │ │ ├── binary_iarchive.hpp │ │ ├── binary_iarchive_impl.hpp │ │ ├── binary_oarchive.hpp │ │ ├── binary_oarchive_impl.hpp │ │ ├── binary_wiarchive.hpp │ │ ├── binary_woarchive.hpp │ │ ├── codecvt_null.hpp │ │ ├── detail │ │ │ ├── abi_prefix.hpp │ │ │ ├── abi_suffix.hpp │ │ │ ├── archive_serializer_map.hpp │ │ │ ├── auto_link_archive.hpp │ │ │ ├── auto_link_warchive.hpp │ │ │ ├── basic_iarchive.hpp │ │ │ ├── basic_iserializer.hpp │ │ │ ├── basic_oarchive.hpp │ │ │ ├── basic_oserializer.hpp │ │ │ ├── basic_pointer_iserializer.hpp │ │ │ ├── basic_pointer_oserializer.hpp │ │ │ ├── basic_serializer.hpp │ │ │ ├── basic_serializer_map.hpp │ │ │ ├── check.hpp │ │ │ ├── common_iarchive.hpp │ │ │ ├── common_oarchive.hpp │ │ │ ├── decl.hpp │ │ │ ├── helper_collection.hpp │ │ │ ├── interface_iarchive.hpp │ │ │ ├── interface_oarchive.hpp │ │ │ ├── iserializer.hpp │ │ │ ├── oserializer.hpp │ │ │ ├── register_archive.hpp │ │ │ └── utf8_codecvt_facet.hpp │ │ ├── dinkumware.hpp │ │ ├── impl │ │ │ ├── archive_serializer_map.ipp │ │ │ ├── basic_binary_iarchive.ipp │ │ │ ├── basic_binary_iprimitive.ipp │ │ │ ├── basic_binary_oarchive.ipp │ │ │ ├── basic_binary_oprimitive.ipp │ │ │ ├── basic_text_iarchive.ipp │ │ │ ├── basic_text_iprimitive.ipp │ │ │ ├── basic_text_oarchive.ipp │ │ │ ├── basic_text_oprimitive.ipp │ │ │ ├── basic_xml_grammar.hpp │ │ │ ├── basic_xml_iarchive.ipp │ │ │ ├── basic_xml_oarchive.ipp │ │ │ ├── text_iarchive_impl.ipp │ │ │ ├── text_oarchive_impl.ipp │ │ │ ├── text_wiarchive_impl.ipp │ │ │ ├── text_woarchive_impl.ipp │ │ │ ├── xml_iarchive_impl.ipp │ │ │ ├── xml_oarchive_impl.ipp │ │ │ ├── xml_wiarchive_impl.ipp │ │ │ └── xml_woarchive_impl.ipp │ │ ├── iterators │ │ │ ├── base64_from_binary.hpp │ │ │ ├── binary_from_base64.hpp │ │ │ ├── dataflow_exception.hpp │ │ │ ├── escape.hpp │ │ │ ├── insert_linebreaks.hpp │ │ │ ├── istream_iterator.hpp │ │ │ ├── mb_from_wchar.hpp │ │ │ ├── ostream_iterator.hpp │ │ │ ├── remove_whitespace.hpp │ │ │ ├── transform_width.hpp │ │ │ ├── unescape.hpp │ │ │ ├── wchar_from_mb.hpp │ │ │ ├── xml_escape.hpp │ │ │ └── xml_unescape.hpp │ │ ├── polymorphic_iarchive.hpp │ │ ├── polymorphic_oarchive.hpp │ │ ├── text_iarchive.hpp │ │ ├── text_oarchive.hpp │ │ ├── text_wiarchive.hpp │ │ ├── text_woarchive.hpp │ │ ├── wcslen.hpp │ │ ├── xml_archive_exception.hpp │ │ ├── xml_iarchive.hpp │ │ ├── xml_oarchive.hpp │ │ ├── xml_wiarchive.hpp │ │ └── xml_woarchive.hpp │ │ ├── array.hpp │ │ ├── assert.hpp │ │ ├── atomic.hpp │ │ ├── atomic │ │ ├── atomic.hpp │ │ ├── atomic_flag.hpp │ │ ├── capabilities.hpp │ │ ├── detail │ │ │ ├── addressof.hpp │ │ │ ├── atomic_flag.hpp │ │ │ ├── atomic_template.hpp │ │ │ ├── bitwise_cast.hpp │ │ │ ├── bitwise_fp_cast.hpp │ │ │ ├── caps_gcc_alpha.hpp │ │ │ ├── caps_gcc_arm.hpp │ │ │ ├── caps_gcc_atomic.hpp │ │ │ ├── caps_gcc_ppc.hpp │ │ │ ├── caps_gcc_sparc.hpp │ │ │ ├── caps_gcc_sync.hpp │ │ │ ├── caps_gcc_x86.hpp │ │ │ ├── caps_linux_arm.hpp │ │ │ ├── caps_msvc_arm.hpp │ │ │ ├── caps_msvc_x86.hpp │ │ │ ├── caps_windows.hpp │ │ │ ├── config.hpp │ │ │ ├── extra_fp_operations.hpp │ │ │ ├── extra_fp_operations_fwd.hpp │ │ │ ├── extra_fp_ops_emulated.hpp │ │ │ ├── extra_fp_ops_generic.hpp │ │ │ ├── extra_operations.hpp │ │ │ ├── extra_operations_fwd.hpp │ │ │ ├── extra_ops_emulated.hpp │ │ │ ├── extra_ops_gcc_arm.hpp │ │ │ ├── extra_ops_gcc_ppc.hpp │ │ │ ├── extra_ops_gcc_x86.hpp │ │ │ ├── extra_ops_generic.hpp │ │ │ ├── extra_ops_msvc_arm.hpp │ │ │ ├── extra_ops_msvc_x86.hpp │ │ │ ├── float_sizes.hpp │ │ │ ├── fp_operations.hpp │ │ │ ├── fp_operations_fwd.hpp │ │ │ ├── fp_ops_emulated.hpp │ │ │ ├── fp_ops_generic.hpp │ │ │ ├── hwcaps_gcc_arm.hpp │ │ │ ├── hwcaps_gcc_ppc.hpp │ │ │ ├── hwcaps_gcc_x86.hpp │ │ │ ├── int_sizes.hpp │ │ │ ├── integral_extend.hpp │ │ │ ├── interlocked.hpp │ │ │ ├── link.hpp │ │ │ ├── lockpool.hpp │ │ │ ├── operations.hpp │ │ │ ├── operations_fwd.hpp │ │ │ ├── operations_lockfree.hpp │ │ │ ├── ops_cas_based.hpp │ │ │ ├── ops_emulated.hpp │ │ │ ├── ops_extending_cas_based.hpp │ │ │ ├── ops_gcc_alpha.hpp │ │ │ ├── ops_gcc_arm.hpp │ │ │ ├── ops_gcc_arm_common.hpp │ │ │ ├── ops_gcc_atomic.hpp │ │ │ ├── ops_gcc_ppc.hpp │ │ │ ├── ops_gcc_ppc_common.hpp │ │ │ ├── ops_gcc_sparc.hpp │ │ │ ├── ops_gcc_sync.hpp │ │ │ ├── ops_gcc_x86.hpp │ │ │ ├── ops_gcc_x86_dcas.hpp │ │ │ ├── ops_linux_arm.hpp │ │ │ ├── ops_msvc_arm.hpp │ │ │ ├── ops_msvc_common.hpp │ │ │ ├── ops_msvc_x86.hpp │ │ │ ├── ops_windows.hpp │ │ │ ├── pause.hpp │ │ │ ├── platform.hpp │ │ │ ├── storage_type.hpp │ │ │ ├── string_ops.hpp │ │ │ └── type_traits │ │ │ │ ├── conditional.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_iec559.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_signed.hpp │ │ │ │ ├── is_trivially_default_constructible.hpp │ │ │ │ ├── make_signed.hpp │ │ │ │ └── make_unsigned.hpp │ │ └── fences.hpp │ │ ├── bind.hpp │ │ ├── bind │ │ ├── arg.hpp │ │ ├── bind.hpp │ │ ├── bind_cc.hpp │ │ ├── bind_mf2_cc.hpp │ │ ├── bind_mf_cc.hpp │ │ ├── bind_template.hpp │ │ ├── mem_fn.hpp │ │ ├── mem_fn_cc.hpp │ │ ├── mem_fn_template.hpp │ │ ├── mem_fn_vw.hpp │ │ ├── placeholders.hpp │ │ ├── protect.hpp │ │ └── storage.hpp │ │ ├── blank.hpp │ │ ├── blank_fwd.hpp │ │ ├── call_traits.hpp │ │ ├── cast.hpp │ │ ├── cerrno.hpp │ │ ├── checked_delete.hpp │ │ ├── chrono │ │ ├── ceil.hpp │ │ ├── chrono.hpp │ │ ├── clock_string.hpp │ │ ├── config.hpp │ │ ├── detail │ │ │ ├── inlined │ │ │ │ ├── chrono.hpp │ │ │ │ ├── mac │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ └── thread_clock.hpp │ │ │ │ ├── posix │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ └── thread_clock.hpp │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ ├── thread_clock.hpp │ │ │ │ └── win │ │ │ │ │ ├── chrono.hpp │ │ │ │ │ ├── process_cpu_clocks.hpp │ │ │ │ │ └── thread_clock.hpp │ │ │ ├── is_evenly_divisible_by.hpp │ │ │ ├── static_assert.hpp │ │ │ └── system.hpp │ │ ├── duration.hpp │ │ ├── process_cpu_clocks.hpp │ │ ├── system_clocks.hpp │ │ ├── thread_clock.hpp │ │ └── time_point.hpp │ │ ├── compressed_pair.hpp │ │ ├── concept │ │ ├── assert.hpp │ │ ├── detail │ │ │ ├── backward_compatibility.hpp │ │ │ ├── borland.hpp │ │ │ ├── concept_def.hpp │ │ │ ├── concept_undef.hpp │ │ │ ├── general.hpp │ │ │ ├── has_constraints.hpp │ │ │ └── msvc.hpp │ │ ├── requires.hpp │ │ └── usage.hpp │ │ ├── concept_archetype.hpp │ │ ├── concept_check.hpp │ │ ├── config.hpp │ │ ├── config │ │ ├── abi │ │ │ ├── borland_prefix.hpp │ │ │ ├── borland_suffix.hpp │ │ │ ├── msvc_prefix.hpp │ │ │ └── msvc_suffix.hpp │ │ ├── abi_prefix.hpp │ │ ├── abi_suffix.hpp │ │ ├── auto_link.hpp │ │ ├── compiler │ │ │ ├── borland.hpp │ │ │ ├── clang.hpp │ │ │ ├── codegear.hpp │ │ │ ├── comeau.hpp │ │ │ ├── common_edg.hpp │ │ │ ├── compaq_cxx.hpp │ │ │ ├── cray.hpp │ │ │ ├── diab.hpp │ │ │ ├── digitalmars.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gcc_xml.hpp │ │ │ ├── greenhills.hpp │ │ │ ├── hp_acc.hpp │ │ │ ├── intel.hpp │ │ │ ├── kai.hpp │ │ │ ├── metrowerks.hpp │ │ │ ├── mpw.hpp │ │ │ ├── nvcc.hpp │ │ │ ├── pathscale.hpp │ │ │ ├── pgi.hpp │ │ │ ├── sgi_mipspro.hpp │ │ │ ├── sunpro_cc.hpp │ │ │ ├── vacpp.hpp │ │ │ ├── visualc.hpp │ │ │ ├── xlcpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── detail │ │ │ ├── posix_features.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ └── suffix.hpp │ │ ├── header_deprecated.hpp │ │ ├── helper_macros.hpp │ │ ├── no_tr1 │ │ │ ├── cmath.hpp │ │ │ ├── complex.hpp │ │ │ ├── functional.hpp │ │ │ ├── memory.hpp │ │ │ └── utility.hpp │ │ ├── platform │ │ │ ├── aix.hpp │ │ │ ├── amigaos.hpp │ │ │ ├── beos.hpp │ │ │ ├── bsd.hpp │ │ │ ├── cloudabi.hpp │ │ │ ├── cray.hpp │ │ │ ├── cygwin.hpp │ │ │ ├── haiku.hpp │ │ │ ├── hpux.hpp │ │ │ ├── irix.hpp │ │ │ ├── linux.hpp │ │ │ ├── macos.hpp │ │ │ ├── qnxnto.hpp │ │ │ ├── solaris.hpp │ │ │ ├── symbian.hpp │ │ │ ├── vms.hpp │ │ │ ├── vxworks.hpp │ │ │ ├── win32.hpp │ │ │ └── zos.hpp │ │ ├── pragma_message.hpp │ │ ├── requires_threads.hpp │ │ ├── stdlib │ │ │ ├── dinkumware.hpp │ │ │ ├── libcomo.hpp │ │ │ ├── libcpp.hpp │ │ │ ├── libstdcpp3.hpp │ │ │ ├── modena.hpp │ │ │ ├── msl.hpp │ │ │ ├── roguewave.hpp │ │ │ ├── sgi.hpp │ │ │ ├── stlport.hpp │ │ │ ├── vacpp.hpp │ │ │ └── xlcpp_zos.hpp │ │ ├── user.hpp │ │ ├── warning_disable.hpp │ │ └── workaround.hpp │ │ ├── container │ │ ├── allocator_traits.hpp │ │ ├── container_fwd.hpp │ │ ├── detail │ │ │ ├── addressof.hpp │ │ │ ├── advanced_insert_int.hpp │ │ │ ├── algorithm.hpp │ │ │ ├── alloc_helpers.hpp │ │ │ ├── allocation_type.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── construct_in_place.hpp │ │ │ ├── copy_move_algo.hpp │ │ │ ├── destroyers.hpp │ │ │ ├── dispatch_uses_allocator.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterators.hpp │ │ │ ├── min_max.hpp │ │ │ ├── mpl.hpp │ │ │ ├── next_capacity.hpp │ │ │ ├── pair.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── std_fwd.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── value_functors.hpp │ │ │ ├── value_init.hpp │ │ │ ├── variadic_templates_tools.hpp │ │ │ ├── version_type.hpp │ │ │ └── workaround.hpp │ │ ├── new_allocator.hpp │ │ ├── options.hpp │ │ ├── scoped_allocator.hpp │ │ ├── scoped_allocator_fwd.hpp │ │ ├── throw_exception.hpp │ │ ├── uses_allocator.hpp │ │ ├── uses_allocator_fwd.hpp │ │ └── vector.hpp │ │ ├── container_hash │ │ ├── detail │ │ │ ├── float_functions.hpp │ │ │ ├── hash_float.hpp │ │ │ └── limits.hpp │ │ ├── extensions.hpp │ │ ├── hash.hpp │ │ └── hash_fwd.hpp │ │ ├── core │ │ ├── addressof.hpp │ │ ├── checked_delete.hpp │ │ ├── demangle.hpp │ │ ├── enable_if.hpp │ │ ├── explicit_operator_bool.hpp │ │ ├── ignore_unused.hpp │ │ ├── is_same.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── noncopyable.hpp │ │ ├── pointer_traits.hpp │ │ ├── ref.hpp │ │ ├── scoped_enum.hpp │ │ ├── swap.hpp │ │ └── typeinfo.hpp │ │ ├── cregex.hpp │ │ ├── cstdint.hpp │ │ ├── current_function.hpp │ │ ├── date_time │ │ ├── adjust_functors.hpp │ │ ├── c_time.hpp │ │ ├── compiler_config.hpp │ │ ├── constrained_value.hpp │ │ ├── date.hpp │ │ ├── date_clock_device.hpp │ │ ├── date_defs.hpp │ │ ├── date_duration.hpp │ │ ├── date_duration_types.hpp │ │ ├── date_format_simple.hpp │ │ ├── date_formatting.hpp │ │ ├── date_formatting_limited.hpp │ │ ├── date_formatting_locales.hpp │ │ ├── date_generators.hpp │ │ ├── date_iterator.hpp │ │ ├── date_names_put.hpp │ │ ├── date_parsing.hpp │ │ ├── dst_rules.hpp │ │ ├── filetime_functions.hpp │ │ ├── gregorian │ │ │ ├── conversion.hpp │ │ │ ├── formatters.hpp │ │ │ ├── formatters_limited.hpp │ │ │ ├── greg_calendar.hpp │ │ │ ├── greg_date.hpp │ │ │ ├── greg_day.hpp │ │ │ ├── greg_day_of_year.hpp │ │ │ ├── greg_duration.hpp │ │ │ ├── greg_duration_types.hpp │ │ │ ├── greg_facet.hpp │ │ │ ├── greg_month.hpp │ │ │ ├── greg_weekday.hpp │ │ │ ├── greg_year.hpp │ │ │ ├── greg_ymd.hpp │ │ │ ├── gregorian_types.hpp │ │ │ └── parsers.hpp │ │ ├── gregorian_calendar.hpp │ │ ├── gregorian_calendar.ipp │ │ ├── int_adapter.hpp │ │ ├── iso_format.hpp │ │ ├── locale_config.hpp │ │ ├── microsec_time_clock.hpp │ │ ├── parse_format_base.hpp │ │ ├── period.hpp │ │ ├── posix_time │ │ │ ├── conversion.hpp │ │ │ ├── date_duration_operators.hpp │ │ │ ├── posix_time_config.hpp │ │ │ ├── posix_time_duration.hpp │ │ │ ├── posix_time_system.hpp │ │ │ ├── posix_time_types.hpp │ │ │ ├── ptime.hpp │ │ │ └── time_period.hpp │ │ ├── special_defs.hpp │ │ ├── time.hpp │ │ ├── time_clock.hpp │ │ ├── time_defs.hpp │ │ ├── time_duration.hpp │ │ ├── time_iterator.hpp │ │ ├── time_resolution_traits.hpp │ │ ├── time_system_counted.hpp │ │ ├── time_system_split.hpp │ │ ├── wrapping_int.hpp │ │ └── year_month_day.hpp │ │ ├── detail │ │ ├── algorithm.hpp │ │ ├── allocator_utilities.hpp │ │ ├── atomic_count.hpp │ │ ├── basic_pointerbuf.hpp │ │ ├── binary_search.hpp │ │ ├── call_traits.hpp │ │ ├── compressed_pair.hpp │ │ ├── container_fwd.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── endian.hpp │ │ ├── fenv.hpp │ │ ├── indirect_traits.hpp │ │ ├── interlocked.hpp │ │ ├── is_incrementable.hpp │ │ ├── is_sorted.hpp │ │ ├── is_xxx.hpp │ │ ├── iterator.hpp │ │ ├── lcast_precision.hpp │ │ ├── lightweight_mutex.hpp │ │ ├── no_exceptions_support.hpp │ │ ├── numeric_traits.hpp │ │ ├── reference_content.hpp │ │ ├── select_type.hpp │ │ ├── sp_typeinfo.hpp │ │ ├── templated_streams.hpp │ │ ├── utf8_codecvt_facet.hpp │ │ ├── utf8_codecvt_facet.ipp │ │ ├── winapi │ │ │ ├── detail │ │ │ │ └── deprecated_namespace.hpp │ │ │ ├── get_current_process.hpp │ │ │ ├── get_current_thread.hpp │ │ │ ├── get_last_error.hpp │ │ │ ├── get_process_times.hpp │ │ │ ├── get_thread_times.hpp │ │ │ ├── time.hpp │ │ │ └── timers.hpp │ │ └── workaround.hpp │ │ ├── dynamic_bitset.hpp │ │ ├── dynamic_bitset │ │ ├── config.hpp │ │ └── dynamic_bitset.hpp │ │ ├── dynamic_bitset_fwd.hpp │ │ ├── enable_shared_from_this.hpp │ │ ├── exception │ │ ├── current_exception_cast.hpp │ │ ├── detail │ │ │ ├── clone_current_exception.hpp │ │ │ ├── error_info_impl.hpp │ │ │ ├── exception_ptr.hpp │ │ │ ├── is_output_streamable.hpp │ │ │ ├── object_hex_dump.hpp │ │ │ ├── shared_ptr.hpp │ │ │ └── type_info.hpp │ │ ├── diagnostic_information.hpp │ │ ├── exception.hpp │ │ ├── get_error_info.hpp │ │ ├── info.hpp │ │ ├── to_string.hpp │ │ └── to_string_stub.hpp │ │ ├── exception_ptr.hpp │ │ ├── foreach.hpp │ │ ├── foreach_fwd.hpp │ │ ├── function.hpp │ │ ├── function │ │ ├── detail │ │ │ ├── function_iterate.hpp │ │ │ ├── gen_maybe_include.pl │ │ │ ├── maybe_include.hpp │ │ │ └── prologue.hpp │ │ ├── function0.hpp │ │ ├── function1.hpp │ │ ├── function10.hpp │ │ ├── function2.hpp │ │ ├── function3.hpp │ │ ├── function4.hpp │ │ ├── function5.hpp │ │ ├── function6.hpp │ │ ├── function7.hpp │ │ ├── function8.hpp │ │ ├── function9.hpp │ │ ├── function_base.hpp │ │ ├── function_fwd.hpp │ │ └── function_template.hpp │ │ ├── function_equal.hpp │ │ ├── function_types │ │ ├── components.hpp │ │ ├── config │ │ │ ├── cc_names.hpp │ │ │ ├── compiler.hpp │ │ │ └── config.hpp │ │ ├── detail │ │ │ ├── class_transform.hpp │ │ │ ├── classifier.hpp │ │ │ ├── classifier_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── components_as_mpl_sequence.hpp │ │ │ ├── components_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ ├── cv_traits.hpp │ │ │ ├── encoding │ │ │ │ ├── aliases_def.hpp │ │ │ │ ├── aliases_undef.hpp │ │ │ │ ├── def.hpp │ │ │ │ └── undef.hpp │ │ │ ├── pp_arity_loop.hpp │ │ │ ├── pp_cc_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_loop.hpp │ │ │ ├── pp_retag_default_cc │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_tags │ │ │ │ ├── cc_tag.hpp │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── pp_variate_loop │ │ │ │ ├── master.hpp │ │ │ │ └── preprocessed.hpp │ │ │ ├── retag_default_cc.hpp │ │ │ ├── synthesize.hpp │ │ │ ├── synthesize_impl │ │ │ │ ├── arity10_0.hpp │ │ │ │ ├── arity10_1.hpp │ │ │ │ ├── arity20_0.hpp │ │ │ │ ├── arity20_1.hpp │ │ │ │ ├── arity30_0.hpp │ │ │ │ ├── arity30_1.hpp │ │ │ │ ├── arity40_0.hpp │ │ │ │ ├── arity40_1.hpp │ │ │ │ ├── arity50_0.hpp │ │ │ │ ├── arity50_1.hpp │ │ │ │ └── master.hpp │ │ │ └── to_sequence.hpp │ │ ├── is_callable_builtin.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── member_function_pointer.hpp │ │ ├── parameter_types.hpp │ │ └── property_tags.hpp │ │ ├── functional │ │ ├── hash.hpp │ │ └── hash_fwd.hpp │ │ ├── fusion │ │ ├── adapted │ │ │ ├── boost_tuple.hpp │ │ │ ├── boost_tuple │ │ │ │ ├── boost_tuple_iterator.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── build_cons.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ ├── mpl │ │ │ │ │ └── clear.hpp │ │ │ │ └── tag_of.hpp │ │ │ ├── mpl.hpp │ │ │ ├── mpl │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── category_of_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── has_key_impl.hpp │ │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ │ ├── is_view_impl.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ └── value_at_impl.hpp │ │ │ │ └── mpl_iterator.hpp │ │ │ ├── std_pair.hpp │ │ │ └── struct │ │ │ │ ├── adapt_struct.hpp │ │ │ │ └── detail │ │ │ │ ├── adapt_auto.hpp │ │ │ │ ├── adapt_base.hpp │ │ │ │ ├── adapt_base_attr_filler.hpp │ │ │ │ ├── adapt_is_tpl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── category_of_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── extension.hpp │ │ │ │ ├── is_sequence_impl.hpp │ │ │ │ ├── is_view_impl.hpp │ │ │ │ ├── preprocessor │ │ │ │ └── is_seq.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ ├── algorithm │ │ │ ├── iteration │ │ │ │ ├── detail │ │ │ │ │ ├── fold.hpp │ │ │ │ │ ├── for_each.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── fold.hpp │ │ │ │ │ │ └── reverse_fold.hpp │ │ │ │ │ ├── segmented_fold.hpp │ │ │ │ │ └── segmented_for_each.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── fold_fwd.hpp │ │ │ │ ├── for_each.hpp │ │ │ │ ├── for_each_fwd.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ └── reverse_fold_fwd.hpp │ │ │ ├── query │ │ │ │ ├── any.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── any.hpp │ │ │ │ │ ├── find_if.hpp │ │ │ │ │ ├── segmented_find.hpp │ │ │ │ │ └── segmented_find_if.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_fwd.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ └── find_if_fwd.hpp │ │ │ └── transformation │ │ │ │ ├── erase.hpp │ │ │ │ ├── erase_key.hpp │ │ │ │ ├── insert.hpp │ │ │ │ ├── insert_range.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── remove.hpp │ │ │ │ └── transform.hpp │ │ ├── container │ │ │ ├── deque │ │ │ │ ├── deque_fwd.hpp │ │ │ │ └── detail │ │ │ │ │ └── cpp03 │ │ │ │ │ ├── deque_fwd.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ └── preprocessed │ │ │ │ │ ├── deque10_fwd.hpp │ │ │ │ │ ├── deque20_fwd.hpp │ │ │ │ │ ├── deque30_fwd.hpp │ │ │ │ │ ├── deque40_fwd.hpp │ │ │ │ │ ├── deque50_fwd.hpp │ │ │ │ │ └── deque_fwd.hpp │ │ │ ├── generation │ │ │ │ └── ignore.hpp │ │ │ ├── list │ │ │ │ ├── cons.hpp │ │ │ │ ├── cons_fwd.hpp │ │ │ │ ├── cons_iterator.hpp │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── at_impl.hpp │ │ │ │ │ ├── begin_impl.hpp │ │ │ │ │ ├── build_cons.hpp │ │ │ │ │ ├── convert_impl.hpp │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── list_fwd.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── list10_fwd.hpp │ │ │ │ │ │ │ ├── list20_fwd.hpp │ │ │ │ │ │ │ ├── list30_fwd.hpp │ │ │ │ │ │ │ ├── list40_fwd.hpp │ │ │ │ │ │ │ ├── list50_fwd.hpp │ │ │ │ │ │ │ └── list_fwd.hpp │ │ │ │ │ ├── deref_impl.hpp │ │ │ │ │ ├── empty_impl.hpp │ │ │ │ │ ├── end_impl.hpp │ │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ │ ├── next_impl.hpp │ │ │ │ │ ├── reverse_cons.hpp │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ └── value_of_impl.hpp │ │ │ │ ├── list_fwd.hpp │ │ │ │ └── nil.hpp │ │ │ ├── map │ │ │ │ ├── detail │ │ │ │ │ ├── cpp03 │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── map_fwd.hpp │ │ │ │ │ │ └── preprocessed │ │ │ │ │ │ │ ├── map10_fwd.hpp │ │ │ │ │ │ │ ├── map20_fwd.hpp │ │ │ │ │ │ │ ├── map30_fwd.hpp │ │ │ │ │ │ │ ├── map40_fwd.hpp │ │ │ │ │ │ │ ├── map50_fwd.hpp │ │ │ │ │ │ │ └── map_fwd.hpp │ │ │ │ │ └── map_impl.hpp │ │ │ │ └── map_fwd.hpp │ │ │ ├── set │ │ │ │ ├── detail │ │ │ │ │ └── cpp03 │ │ │ │ │ │ ├── limits.hpp │ │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── set10_fwd.hpp │ │ │ │ │ │ ├── set20_fwd.hpp │ │ │ │ │ │ ├── set30_fwd.hpp │ │ │ │ │ │ ├── set40_fwd.hpp │ │ │ │ │ │ ├── set50_fwd.hpp │ │ │ │ │ │ └── set_fwd.hpp │ │ │ │ │ │ └── set_fwd.hpp │ │ │ │ └── set_fwd.hpp │ │ │ ├── vector.hpp │ │ │ └── vector │ │ │ │ ├── convert.hpp │ │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── as_vector.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── convert_impl.hpp │ │ │ │ ├── cpp03 │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ ├── limits.hpp │ │ │ │ │ ├── preprocessed │ │ │ │ │ │ ├── as_vector.hpp │ │ │ │ │ │ ├── as_vector10.hpp │ │ │ │ │ │ ├── as_vector20.hpp │ │ │ │ │ │ ├── as_vector30.hpp │ │ │ │ │ │ ├── as_vector40.hpp │ │ │ │ │ │ ├── as_vector50.hpp │ │ │ │ │ │ ├── vector.hpp │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ │ │ ├── vector_chooser.hpp │ │ │ │ │ │ ├── vector_chooser10.hpp │ │ │ │ │ │ ├── vector_chooser20.hpp │ │ │ │ │ │ ├── vector_chooser30.hpp │ │ │ │ │ │ ├── vector_chooser40.hpp │ │ │ │ │ │ ├── vector_chooser50.hpp │ │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ │ ├── vvector10.hpp │ │ │ │ │ │ ├── vvector10_fwd.hpp │ │ │ │ │ │ ├── vvector20.hpp │ │ │ │ │ │ ├── vvector20_fwd.hpp │ │ │ │ │ │ ├── vvector30.hpp │ │ │ │ │ │ ├── vvector30_fwd.hpp │ │ │ │ │ │ ├── vvector40.hpp │ │ │ │ │ │ ├── vvector40_fwd.hpp │ │ │ │ │ │ ├── vvector50.hpp │ │ │ │ │ │ └── vvector50_fwd.hpp │ │ │ │ │ ├── value_at_impl.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_fwd.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_fwd.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_fwd.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_fwd.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ ├── vector50_fwd.hpp │ │ │ │ │ ├── vector_forward_ctor.hpp │ │ │ │ │ ├── vector_fwd.hpp │ │ │ │ │ ├── vector_n.hpp │ │ │ │ │ └── vector_n_chooser.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ │ ├── vector.hpp │ │ │ │ ├── vector10.hpp │ │ │ │ ├── vector_fwd.hpp │ │ │ │ └── vector_iterator.hpp │ │ ├── include │ │ │ ├── any.hpp │ │ │ ├── as_list.hpp │ │ │ ├── at_c.hpp │ │ │ ├── begin.hpp │ │ │ ├── category_of.hpp │ │ │ ├── cons.hpp │ │ │ ├── fold.hpp │ │ │ ├── for_each.hpp │ │ │ ├── intrinsic.hpp │ │ │ ├── is_segmented.hpp │ │ │ ├── is_view.hpp │ │ │ ├── iterator_base.hpp │ │ │ ├── next.hpp │ │ │ ├── reverse_fold.hpp │ │ │ ├── single_view.hpp │ │ │ ├── size.hpp │ │ │ ├── std_pair.hpp │ │ │ ├── tag_of_fwd.hpp │ │ │ ├── transform.hpp │ │ │ ├── tuple.hpp │ │ │ └── value_of.hpp │ │ ├── iterator │ │ │ ├── advance.hpp │ │ │ ├── basic_iterator.hpp │ │ │ ├── deref.hpp │ │ │ ├── deref_data.hpp │ │ │ ├── detail │ │ │ │ ├── adapt_deref_traits.hpp │ │ │ │ ├── adapt_value_traits.hpp │ │ │ │ ├── advance.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── segment_sequence.hpp │ │ │ │ ├── segmented_equal_to.hpp │ │ │ │ ├── segmented_iterator.hpp │ │ │ │ └── segmented_next_impl.hpp │ │ │ ├── distance.hpp │ │ │ ├── equal_to.hpp │ │ │ ├── iterator_adapter.hpp │ │ │ ├── iterator_facade.hpp │ │ │ ├── key_of.hpp │ │ │ ├── mpl.hpp │ │ │ ├── mpl │ │ │ │ ├── convert_iterator.hpp │ │ │ │ └── fusion_iterator.hpp │ │ │ ├── next.hpp │ │ │ ├── prior.hpp │ │ │ ├── segmented_iterator.hpp │ │ │ ├── value_of.hpp │ │ │ └── value_of_data.hpp │ │ ├── mpl.hpp │ │ ├── mpl │ │ │ ├── at.hpp │ │ │ ├── back.hpp │ │ │ ├── begin.hpp │ │ │ ├── clear.hpp │ │ │ ├── detail │ │ │ │ └── clear.hpp │ │ │ ├── empty.hpp │ │ │ ├── end.hpp │ │ │ ├── erase.hpp │ │ │ ├── erase_key.hpp │ │ │ ├── front.hpp │ │ │ ├── has_key.hpp │ │ │ ├── insert.hpp │ │ │ ├── insert_range.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ └── size.hpp │ │ ├── sequence │ │ │ ├── comparison.hpp │ │ │ ├── comparison │ │ │ │ ├── detail │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ └── not_equal_to.hpp │ │ │ │ ├── enable_comparison.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ └── not_equal_to.hpp │ │ │ ├── convert.hpp │ │ │ ├── intrinsic.hpp │ │ │ ├── intrinsic │ │ │ │ ├── at.hpp │ │ │ │ ├── at_c.hpp │ │ │ │ ├── at_key.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── segmented_begin.hpp │ │ │ │ │ ├── segmented_begin_impl.hpp │ │ │ │ │ ├── segmented_end.hpp │ │ │ │ │ ├── segmented_end_impl.hpp │ │ │ │ │ └── segmented_size.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── end.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── has_key.hpp │ │ │ │ ├── segments.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── swap.hpp │ │ │ │ ├── value_at.hpp │ │ │ │ └── value_at_key.hpp │ │ │ ├── intrinsic_fwd.hpp │ │ │ ├── io.hpp │ │ │ └── io │ │ │ │ ├── detail │ │ │ │ ├── in.hpp │ │ │ │ ├── manip.hpp │ │ │ │ └── out.hpp │ │ │ │ ├── in.hpp │ │ │ │ └── out.hpp │ │ ├── support │ │ │ ├── as_const.hpp │ │ │ ├── category_of.hpp │ │ │ ├── config.hpp │ │ │ ├── detail │ │ │ │ ├── access.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── as_fusion_element.hpp │ │ │ │ ├── enabler.hpp │ │ │ │ ├── index_sequence.hpp │ │ │ │ ├── is_mpl_sequence.hpp │ │ │ │ ├── is_native_fusion_sequence.hpp │ │ │ │ ├── mpl_iterator_category.hpp │ │ │ │ ├── pp_round.hpp │ │ │ │ └── segmented_fold_until_impl.hpp │ │ │ ├── is_iterator.hpp │ │ │ ├── is_segmented.hpp │ │ │ ├── is_sequence.hpp │ │ │ ├── is_view.hpp │ │ │ ├── iterator_base.hpp │ │ │ ├── segmented_fold_until.hpp │ │ │ ├── sequence_base.hpp │ │ │ ├── tag_of.hpp │ │ │ ├── tag_of_fwd.hpp │ │ │ ├── unused.hpp │ │ │ └── void.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ ├── make_tuple.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── make_tuple.hpp │ │ │ │ │ ├── make_tuple10.hpp │ │ │ │ │ ├── make_tuple20.hpp │ │ │ │ │ ├── make_tuple30.hpp │ │ │ │ │ ├── make_tuple40.hpp │ │ │ │ │ ├── make_tuple50.hpp │ │ │ │ │ ├── tuple.hpp │ │ │ │ │ ├── tuple10.hpp │ │ │ │ │ ├── tuple10_fwd.hpp │ │ │ │ │ ├── tuple20.hpp │ │ │ │ │ ├── tuple20_fwd.hpp │ │ │ │ │ ├── tuple30.hpp │ │ │ │ │ ├── tuple30_fwd.hpp │ │ │ │ │ ├── tuple40.hpp │ │ │ │ │ ├── tuple40_fwd.hpp │ │ │ │ │ ├── tuple50.hpp │ │ │ │ │ ├── tuple50_fwd.hpp │ │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ │ ├── tuple_tie.hpp │ │ │ │ │ ├── tuple_tie10.hpp │ │ │ │ │ ├── tuple_tie20.hpp │ │ │ │ │ ├── tuple_tie30.hpp │ │ │ │ │ ├── tuple_tie40.hpp │ │ │ │ │ └── tuple_tie50.hpp │ │ │ │ ├── tuple.hpp │ │ │ │ ├── tuple_expand.hpp │ │ │ │ ├── tuple_fwd.hpp │ │ │ │ └── tuple_tie.hpp │ │ │ ├── make_tuple.hpp │ │ │ ├── tuple.hpp │ │ │ ├── tuple_fwd.hpp │ │ │ └── tuple_tie.hpp │ │ └── view │ │ │ ├── detail │ │ │ └── strictest_traversal.hpp │ │ │ ├── filter_view │ │ │ ├── detail │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── filter_view.hpp │ │ │ └── filter_view_iterator.hpp │ │ │ ├── iterator_range.hpp │ │ │ ├── iterator_range │ │ │ ├── detail │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── is_segmented_impl.hpp │ │ │ │ ├── segmented_iterator_range.hpp │ │ │ │ ├── segments_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ └── value_at_impl.hpp │ │ │ └── iterator_range.hpp │ │ │ ├── joint_view │ │ │ ├── detail │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_data_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── key_of_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── value_of_data_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── joint_view.hpp │ │ │ ├── joint_view_fwd.hpp │ │ │ └── joint_view_iterator.hpp │ │ │ ├── single_view.hpp │ │ │ ├── single_view │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── single_view.hpp │ │ │ └── single_view_iterator.hpp │ │ │ ├── transform_view │ │ │ ├── detail │ │ │ │ ├── advance_impl.hpp │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_impl.hpp │ │ │ │ ├── deref_impl.hpp │ │ │ │ ├── distance_impl.hpp │ │ │ │ ├── end_impl.hpp │ │ │ │ ├── equal_to_impl.hpp │ │ │ │ ├── next_impl.hpp │ │ │ │ ├── prior_impl.hpp │ │ │ │ ├── value_at_impl.hpp │ │ │ │ └── value_of_impl.hpp │ │ │ ├── transform_view.hpp │ │ │ ├── transform_view_fwd.hpp │ │ │ └── transform_view_iterator.hpp │ │ │ ├── zip_view.hpp │ │ │ └── zip_view │ │ │ ├── detail │ │ │ ├── advance_impl.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── begin_impl.hpp │ │ │ ├── deref_impl.hpp │ │ │ ├── distance_impl.hpp │ │ │ ├── end_impl.hpp │ │ │ ├── equal_to_impl.hpp │ │ │ ├── next_impl.hpp │ │ │ ├── prior_impl.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── value_at_impl.hpp │ │ │ └── value_of_impl.hpp │ │ │ ├── zip_view.hpp │ │ │ ├── zip_view_iterator.hpp │ │ │ └── zip_view_iterator_fwd.hpp │ │ ├── get_pointer.hpp │ │ ├── graph │ │ ├── adjacency_iterator.hpp │ │ ├── adjacency_list.hpp │ │ ├── breadth_first_search.hpp │ │ ├── buffer_concepts.hpp │ │ ├── compressed_sparse_row_graph.hpp │ │ ├── depth_first_search.hpp │ │ ├── detail │ │ │ ├── adj_list_edge_iterator.hpp │ │ │ ├── adjacency_list.hpp │ │ │ ├── compressed_sparse_row_struct.hpp │ │ │ ├── d_ary_heap.hpp │ │ │ ├── edge.hpp │ │ │ ├── histogram_sort.hpp │ │ │ ├── indexed_properties.hpp │ │ │ ├── is_distributed_selector.hpp │ │ │ ├── read_graphviz_new.hpp │ │ │ ├── read_graphviz_spirit.hpp │ │ │ └── set_adaptor.hpp │ │ ├── distributed │ │ │ ├── breadth_first_search.hpp │ │ │ ├── concepts.hpp │ │ │ ├── depth_first_search.hpp │ │ │ ├── detail │ │ │ │ ├── filtered_queue.hpp │ │ │ │ └── queue.ipp │ │ │ ├── graphviz.hpp │ │ │ ├── queue.hpp │ │ │ └── two_bit_color_map.hpp │ │ ├── dll_import_export.hpp │ │ ├── exception.hpp │ │ ├── filtered_graph.hpp │ │ ├── graph_concepts.hpp │ │ ├── graph_mutability_traits.hpp │ │ ├── graph_selectors.hpp │ │ ├── graph_traits.hpp │ │ ├── graph_utility.hpp │ │ ├── graphml.hpp │ │ ├── graphviz.hpp │ │ ├── iteration_macros.hpp │ │ ├── named_function_params.hpp │ │ ├── named_graph.hpp │ │ ├── numeric_values.hpp │ │ ├── overloading.hpp │ │ ├── parallel │ │ │ ├── algorithm.hpp │ │ │ ├── container_traits.hpp │ │ │ ├── detail │ │ │ │ └── inplace_all_to_all.hpp │ │ │ ├── process_group.hpp │ │ │ ├── properties.hpp │ │ │ └── simple_trigger.hpp │ │ ├── properties.hpp │ │ ├── property_maps │ │ │ ├── constant_property_map.hpp │ │ │ └── null_property_map.hpp │ │ ├── reverse_graph.hpp │ │ ├── subgraph.hpp │ │ ├── topological_sort.hpp │ │ ├── transitive_reduction.hpp │ │ ├── two_bit_color_map.hpp │ │ └── visitors.hpp │ │ ├── implicit_cast.hpp │ │ ├── indirect_reference.hpp │ │ ├── integer.hpp │ │ ├── integer │ │ ├── common_factor_rt.hpp │ │ ├── integer_log2.hpp │ │ └── static_log2.hpp │ │ ├── integer_fwd.hpp │ │ ├── integer_traits.hpp │ │ ├── intrusive │ │ ├── detail │ │ │ ├── algorithm.hpp │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── has_member_function_callable_with.hpp │ │ │ ├── iterator.hpp │ │ │ ├── minimal_pair_header.hpp │ │ │ ├── mpl.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_fwd.hpp │ │ │ └── workaround.hpp │ │ ├── pack_options.hpp │ │ ├── pointer_rebind.hpp │ │ └── pointer_traits.hpp │ │ ├── intrusive_ptr.hpp │ │ ├── io │ │ └── ios_state.hpp │ │ ├── io_fwd.hpp │ │ ├── is_placeholder.hpp │ │ ├── iterator │ │ ├── advance.hpp │ │ ├── counting_iterator.hpp │ │ ├── detail │ │ │ ├── config_def.hpp │ │ │ ├── config_undef.hpp │ │ │ ├── enable_if.hpp │ │ │ └── facade_iterator_category.hpp │ │ ├── distance.hpp │ │ ├── filter_iterator.hpp │ │ ├── indirect_iterator.hpp │ │ ├── interoperable.hpp │ │ ├── iterator_adaptor.hpp │ │ ├── iterator_categories.hpp │ │ ├── iterator_concepts.hpp │ │ ├── iterator_facade.hpp │ │ ├── iterator_traits.hpp │ │ ├── minimum_category.hpp │ │ ├── reverse_iterator.hpp │ │ ├── transform_iterator.hpp │ │ └── zip_iterator.hpp │ │ ├── iterator_adaptors.hpp │ │ ├── lexical_cast.hpp │ │ ├── lexical_cast │ │ ├── bad_lexical_cast.hpp │ │ ├── detail │ │ │ ├── converter_lexical.hpp │ │ │ ├── converter_lexical_streams.hpp │ │ │ ├── converter_numeric.hpp │ │ │ ├── inf_nan.hpp │ │ │ ├── is_character.hpp │ │ │ ├── lcast_char_constants.hpp │ │ │ ├── lcast_unsigned_converters.hpp │ │ │ └── widest_char.hpp │ │ └── try_lexical_convert.hpp │ │ ├── limits.hpp │ │ ├── make_shared.hpp │ │ ├── math │ │ ├── constants │ │ │ ├── calculate_constants.hpp │ │ │ └── constants.hpp │ │ ├── distributions │ │ │ ├── beta.hpp │ │ │ ├── complement.hpp │ │ │ ├── detail │ │ │ │ ├── common_error_handling.hpp │ │ │ │ └── derived_accessors.hpp │ │ │ └── fwd.hpp │ │ ├── policies │ │ │ ├── error_handling.hpp │ │ │ └── policy.hpp │ │ ├── special_functions │ │ │ ├── bernoulli.hpp │ │ │ ├── beta.hpp │ │ │ ├── binomial.hpp │ │ │ ├── cbrt.hpp │ │ │ ├── detail │ │ │ │ ├── bernoulli_details.hpp │ │ │ │ ├── erf_inv.hpp │ │ │ │ ├── fp_traits.hpp │ │ │ │ ├── gamma_inva.hpp │ │ │ │ ├── ibeta_inv_ab.hpp │ │ │ │ ├── ibeta_inverse.hpp │ │ │ │ ├── igamma_inverse.hpp │ │ │ │ ├── igamma_large.hpp │ │ │ │ ├── lanczos_sse2.hpp │ │ │ │ ├── lgamma_small.hpp │ │ │ │ ├── round_fwd.hpp │ │ │ │ ├── t_distribution_inv.hpp │ │ │ │ ├── unchecked_bernoulli.hpp │ │ │ │ └── unchecked_factorial.hpp │ │ │ ├── erf.hpp │ │ │ ├── expm1.hpp │ │ │ ├── factorials.hpp │ │ │ ├── fpclassify.hpp │ │ │ ├── gamma.hpp │ │ │ ├── lanczos.hpp │ │ │ ├── log1p.hpp │ │ │ ├── math_fwd.hpp │ │ │ ├── powm1.hpp │ │ │ ├── round.hpp │ │ │ ├── sign.hpp │ │ │ ├── sin_pi.hpp │ │ │ ├── sqrt1pm1.hpp │ │ │ ├── trunc.hpp │ │ │ └── zeta.hpp │ │ └── tools │ │ │ ├── atomic.hpp │ │ │ ├── big_constant.hpp │ │ │ ├── config.hpp │ │ │ ├── convert_from_string.hpp │ │ │ ├── detail │ │ │ ├── polynomial_horner1_10.hpp │ │ │ ├── polynomial_horner1_11.hpp │ │ │ ├── polynomial_horner1_12.hpp │ │ │ ├── polynomial_horner1_13.hpp │ │ │ ├── polynomial_horner1_14.hpp │ │ │ ├── polynomial_horner1_15.hpp │ │ │ ├── polynomial_horner1_16.hpp │ │ │ ├── polynomial_horner1_17.hpp │ │ │ ├── polynomial_horner1_18.hpp │ │ │ ├── polynomial_horner1_19.hpp │ │ │ ├── polynomial_horner1_2.hpp │ │ │ ├── polynomial_horner1_20.hpp │ │ │ ├── polynomial_horner1_3.hpp │ │ │ ├── polynomial_horner1_4.hpp │ │ │ ├── polynomial_horner1_5.hpp │ │ │ ├── polynomial_horner1_6.hpp │ │ │ ├── polynomial_horner1_7.hpp │ │ │ ├── polynomial_horner1_8.hpp │ │ │ ├── polynomial_horner1_9.hpp │ │ │ ├── polynomial_horner2_10.hpp │ │ │ ├── polynomial_horner2_11.hpp │ │ │ ├── polynomial_horner2_12.hpp │ │ │ ├── polynomial_horner2_13.hpp │ │ │ ├── polynomial_horner2_14.hpp │ │ │ ├── polynomial_horner2_15.hpp │ │ │ ├── polynomial_horner2_16.hpp │ │ │ ├── polynomial_horner2_17.hpp │ │ │ ├── polynomial_horner2_18.hpp │ │ │ ├── polynomial_horner2_19.hpp │ │ │ ├── polynomial_horner2_2.hpp │ │ │ ├── polynomial_horner2_20.hpp │ │ │ ├── polynomial_horner2_3.hpp │ │ │ ├── polynomial_horner2_4.hpp │ │ │ ├── polynomial_horner2_5.hpp │ │ │ ├── polynomial_horner2_6.hpp │ │ │ ├── polynomial_horner2_7.hpp │ │ │ ├── polynomial_horner2_8.hpp │ │ │ ├── polynomial_horner2_9.hpp │ │ │ ├── polynomial_horner3_10.hpp │ │ │ ├── polynomial_horner3_11.hpp │ │ │ ├── polynomial_horner3_12.hpp │ │ │ ├── polynomial_horner3_13.hpp │ │ │ ├── polynomial_horner3_14.hpp │ │ │ ├── polynomial_horner3_15.hpp │ │ │ ├── polynomial_horner3_16.hpp │ │ │ ├── polynomial_horner3_17.hpp │ │ │ ├── polynomial_horner3_18.hpp │ │ │ ├── polynomial_horner3_19.hpp │ │ │ ├── polynomial_horner3_2.hpp │ │ │ ├── polynomial_horner3_20.hpp │ │ │ ├── polynomial_horner3_3.hpp │ │ │ ├── polynomial_horner3_4.hpp │ │ │ ├── polynomial_horner3_5.hpp │ │ │ ├── polynomial_horner3_6.hpp │ │ │ ├── polynomial_horner3_7.hpp │ │ │ ├── polynomial_horner3_8.hpp │ │ │ ├── polynomial_horner3_9.hpp │ │ │ ├── rational_horner1_10.hpp │ │ │ ├── rational_horner1_11.hpp │ │ │ ├── rational_horner1_12.hpp │ │ │ ├── rational_horner1_13.hpp │ │ │ ├── rational_horner1_14.hpp │ │ │ ├── rational_horner1_15.hpp │ │ │ ├── rational_horner1_16.hpp │ │ │ ├── rational_horner1_17.hpp │ │ │ ├── rational_horner1_18.hpp │ │ │ ├── rational_horner1_19.hpp │ │ │ ├── rational_horner1_2.hpp │ │ │ ├── rational_horner1_20.hpp │ │ │ ├── rational_horner1_3.hpp │ │ │ ├── rational_horner1_4.hpp │ │ │ ├── rational_horner1_5.hpp │ │ │ ├── rational_horner1_6.hpp │ │ │ ├── rational_horner1_7.hpp │ │ │ ├── rational_horner1_8.hpp │ │ │ ├── rational_horner1_9.hpp │ │ │ ├── rational_horner2_10.hpp │ │ │ ├── rational_horner2_11.hpp │ │ │ ├── rational_horner2_12.hpp │ │ │ ├── rational_horner2_13.hpp │ │ │ ├── rational_horner2_14.hpp │ │ │ ├── rational_horner2_15.hpp │ │ │ ├── rational_horner2_16.hpp │ │ │ ├── rational_horner2_17.hpp │ │ │ ├── rational_horner2_18.hpp │ │ │ ├── rational_horner2_19.hpp │ │ │ ├── rational_horner2_2.hpp │ │ │ ├── rational_horner2_20.hpp │ │ │ ├── rational_horner2_3.hpp │ │ │ ├── rational_horner2_4.hpp │ │ │ ├── rational_horner2_5.hpp │ │ │ ├── rational_horner2_6.hpp │ │ │ ├── rational_horner2_7.hpp │ │ │ ├── rational_horner2_8.hpp │ │ │ ├── rational_horner2_9.hpp │ │ │ ├── rational_horner3_10.hpp │ │ │ ├── rational_horner3_11.hpp │ │ │ ├── rational_horner3_12.hpp │ │ │ ├── rational_horner3_13.hpp │ │ │ ├── rational_horner3_14.hpp │ │ │ ├── rational_horner3_15.hpp │ │ │ ├── rational_horner3_16.hpp │ │ │ ├── rational_horner3_17.hpp │ │ │ ├── rational_horner3_18.hpp │ │ │ ├── rational_horner3_19.hpp │ │ │ ├── rational_horner3_2.hpp │ │ │ ├── rational_horner3_20.hpp │ │ │ ├── rational_horner3_3.hpp │ │ │ ├── rational_horner3_4.hpp │ │ │ ├── rational_horner3_5.hpp │ │ │ ├── rational_horner3_6.hpp │ │ │ ├── rational_horner3_7.hpp │ │ │ ├── rational_horner3_8.hpp │ │ │ └── rational_horner3_9.hpp │ │ │ ├── fraction.hpp │ │ │ ├── precision.hpp │ │ │ ├── promotion.hpp │ │ │ ├── rational.hpp │ │ │ ├── real_cast.hpp │ │ │ ├── roots.hpp │ │ │ ├── series.hpp │ │ │ ├── toms748_solve.hpp │ │ │ ├── tuple.hpp │ │ │ └── user.hpp │ │ ├── mem_fn.hpp │ │ ├── memory_order.hpp │ │ ├── move │ │ ├── adl_move_swap.hpp │ │ ├── algo │ │ │ ├── adaptive_merge.hpp │ │ │ ├── detail │ │ │ │ ├── adaptive_sort_merge.hpp │ │ │ │ ├── basic_op.hpp │ │ │ │ ├── heap_sort.hpp │ │ │ │ ├── insertion_sort.hpp │ │ │ │ ├── is_sorted.hpp │ │ │ │ ├── merge.hpp │ │ │ │ ├── merge_sort.hpp │ │ │ │ └── set_difference.hpp │ │ │ ├── move.hpp │ │ │ ├── predicate.hpp │ │ │ └── unique.hpp │ │ ├── algorithm.hpp │ │ ├── core.hpp │ │ ├── default_delete.hpp │ │ ├── detail │ │ │ ├── config_begin.hpp │ │ │ ├── config_end.hpp │ │ │ ├── destruct_n.hpp │ │ │ ├── fwd_macros.hpp │ │ │ ├── iterator_to_raw_pointer.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── meta_utils.hpp │ │ │ ├── meta_utils_core.hpp │ │ │ ├── move_helpers.hpp │ │ │ ├── placement_new.hpp │ │ │ ├── pointer_element.hpp │ │ │ ├── reverse_iterator.hpp │ │ │ ├── std_ns_begin.hpp │ │ │ ├── std_ns_end.hpp │ │ │ ├── to_raw_pointer.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── unique_ptr_meta_utils.hpp │ │ │ └── workaround.hpp │ │ ├── iterator.hpp │ │ ├── make_unique.hpp │ │ ├── move.hpp │ │ ├── traits.hpp │ │ ├── unique_ptr.hpp │ │ ├── utility.hpp │ │ └── utility_core.hpp │ │ ├── mpi.hpp │ │ ├── mpi │ │ ├── allocator.hpp │ │ ├── cartesian_communicator.hpp │ │ ├── collectives.hpp │ │ ├── collectives │ │ │ ├── all_gather.hpp │ │ │ ├── all_reduce.hpp │ │ │ ├── all_to_all.hpp │ │ │ ├── broadcast.hpp │ │ │ ├── gather.hpp │ │ │ ├── gatherv.hpp │ │ │ ├── reduce.hpp │ │ │ ├── scan.hpp │ │ │ ├── scatter.hpp │ │ │ └── scatterv.hpp │ │ ├── collectives_fwd.hpp │ │ ├── communicator.hpp │ │ ├── config.hpp │ │ ├── datatype.hpp │ │ ├── datatype_fwd.hpp │ │ ├── detail │ │ │ ├── antiques.hpp │ │ │ ├── binary_buffer_iprimitive.hpp │ │ │ ├── binary_buffer_oprimitive.hpp │ │ │ ├── broadcast_sc.hpp │ │ │ ├── communicator_sc.hpp │ │ │ ├── computation_tree.hpp │ │ │ ├── content_oarchive.hpp │ │ │ ├── forward_skeleton_iarchive.hpp │ │ │ ├── forward_skeleton_oarchive.hpp │ │ │ ├── ignore_iprimitive.hpp │ │ │ ├── ignore_oprimitive.hpp │ │ │ ├── ignore_skeleton_oarchive.hpp │ │ │ ├── mpi_datatype_cache.hpp │ │ │ ├── mpi_datatype_oarchive.hpp │ │ │ ├── mpi_datatype_primitive.hpp │ │ │ ├── offsets.hpp │ │ │ ├── packed_iprimitive.hpp │ │ │ ├── packed_oprimitive.hpp │ │ │ ├── point_to_point.hpp │ │ │ └── text_skeleton_oarchive.hpp │ │ ├── environment.hpp │ │ ├── error_string.hpp │ │ ├── exception.hpp │ │ ├── graph_communicator.hpp │ │ ├── group.hpp │ │ ├── inplace.hpp │ │ ├── intercommunicator.hpp │ │ ├── nonblocking.hpp │ │ ├── operations.hpp │ │ ├── packed_iarchive.hpp │ │ ├── packed_oarchive.hpp │ │ ├── python.hpp │ │ ├── python │ │ │ ├── config.hpp │ │ │ ├── serialize.hpp │ │ │ └── skeleton_and_content.hpp │ │ ├── request.hpp │ │ ├── skeleton_and_content.hpp │ │ ├── skeleton_and_content_fwd.hpp │ │ ├── status.hpp │ │ └── timer.hpp │ │ ├── mpl │ │ ├── O1_size.hpp │ │ ├── O1_size_fwd.hpp │ │ ├── advance.hpp │ │ ├── advance_fwd.hpp │ │ ├── always.hpp │ │ ├── and.hpp │ │ ├── apply.hpp │ │ ├── apply_fwd.hpp │ │ ├── apply_wrap.hpp │ │ ├── arg.hpp │ │ ├── arg_fwd.hpp │ │ ├── assert.hpp │ │ ├── at.hpp │ │ ├── at_fwd.hpp │ │ ├── aux_ │ │ │ ├── O1_size_impl.hpp │ │ │ ├── adl_barrier.hpp │ │ │ ├── advance_backward.hpp │ │ │ ├── advance_forward.hpp │ │ │ ├── arg_typedef.hpp │ │ │ ├── arithmetic_op.hpp │ │ │ ├── arity.hpp │ │ │ ├── arity_spec.hpp │ │ │ ├── at_impl.hpp │ │ │ ├── back_impl.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── common_name_wknd.hpp │ │ │ ├── comparison_op.hpp │ │ │ ├── config │ │ │ │ ├── adl.hpp │ │ │ │ ├── arrays.hpp │ │ │ │ ├── bcc.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── compiler.hpp │ │ │ │ ├── ctps.hpp │ │ │ │ ├── dependent_nttp.hpp │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ ├── dtp.hpp │ │ │ │ ├── eti.hpp │ │ │ │ ├── forwarding.hpp │ │ │ │ ├── gcc.hpp │ │ │ │ ├── gpu.hpp │ │ │ │ ├── has_apply.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── integral.hpp │ │ │ │ ├── intel.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── msvc.hpp │ │ │ │ ├── msvc_typename.hpp │ │ │ │ ├── nttp.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── overload_resolution.hpp │ │ │ │ ├── pp_counter.hpp │ │ │ │ ├── preprocessor.hpp │ │ │ │ ├── static_constant.hpp │ │ │ │ ├── ttp.hpp │ │ │ │ ├── typeof.hpp │ │ │ │ ├── use_preprocessed.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── count_args.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── find_if_pred.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── fold_impl_body.hpp │ │ │ ├── front_impl.hpp │ │ │ ├── full_lambda.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_begin.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── has_rebind.hpp │ │ │ ├── has_size.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── has_type.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── inserter_algorithm.hpp │ │ │ ├── integral_wrapper.hpp │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ ├── iter_apply.hpp │ │ │ ├── iter_fold_if_impl.hpp │ │ │ ├── iter_fold_impl.hpp │ │ │ ├── iter_push_front.hpp │ │ │ ├── joint_iter.hpp │ │ │ ├── lambda_arity_param.hpp │ │ │ ├── lambda_no_ctps.hpp │ │ │ ├── lambda_spec.hpp │ │ │ ├── lambda_support.hpp │ │ │ ├── largest_int.hpp │ │ │ ├── logical_op.hpp │ │ │ ├── msvc_dtw.hpp │ │ │ ├── msvc_eti_base.hpp │ │ │ ├── msvc_is_class.hpp │ │ │ ├── msvc_never_true.hpp │ │ │ ├── msvc_type.hpp │ │ │ ├── na.hpp │ │ │ ├── na_assert.hpp │ │ │ ├── na_fwd.hpp │ │ │ ├── na_spec.hpp │ │ │ ├── nested_type_wknd.hpp │ │ │ ├── nttp_decl.hpp │ │ │ ├── numeric_cast_utils.hpp │ │ │ ├── numeric_op.hpp │ │ │ ├── order_impl.hpp │ │ │ ├── overload_names.hpp │ │ │ ├── pop_back_impl.hpp │ │ │ ├── pop_front_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── bcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc551 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── bcc_pre590 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── dmc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── gcc │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc60 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── msvc70 │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── mwcw │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ctps │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ ├── no_ttp │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ │ └── plain │ │ │ │ │ ├── advance_backward.hpp │ │ │ │ │ ├── advance_forward.hpp │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── apply.hpp │ │ │ │ │ ├── apply_fwd.hpp │ │ │ │ │ ├── apply_wrap.hpp │ │ │ │ │ ├── arg.hpp │ │ │ │ │ ├── basic_bind.hpp │ │ │ │ │ ├── bind.hpp │ │ │ │ │ ├── bind_fwd.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bitxor.hpp │ │ │ │ │ ├── deque.hpp │ │ │ │ │ ├── divides.hpp │ │ │ │ │ ├── equal_to.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── greater.hpp │ │ │ │ │ ├── greater_equal.hpp │ │ │ │ │ ├── inherit.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ │ ├── less.hpp │ │ │ │ │ ├── less_equal.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── list_c.hpp │ │ │ │ │ ├── map.hpp │ │ │ │ │ ├── minus.hpp │ │ │ │ │ ├── modulus.hpp │ │ │ │ │ ├── not_equal_to.hpp │ │ │ │ │ ├── or.hpp │ │ │ │ │ ├── placeholders.hpp │ │ │ │ │ ├── plus.hpp │ │ │ │ │ ├── quote.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ │ ├── set.hpp │ │ │ │ │ ├── set_c.hpp │ │ │ │ │ ├── shift_left.hpp │ │ │ │ │ ├── shift_right.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── times.hpp │ │ │ │ │ ├── unpack_args.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_c.hpp │ │ │ ├── preprocessor │ │ │ │ ├── add.hpp │ │ │ │ ├── def_params_tail.hpp │ │ │ │ ├── default_params.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── ext_params.hpp │ │ │ │ ├── filter_params.hpp │ │ │ │ ├── is_seq.hpp │ │ │ │ ├── params.hpp │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ ├── range.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── sub.hpp │ │ │ │ ├── token_equal.hpp │ │ │ │ └── tuple.hpp │ │ │ ├── ptr_to_ref.hpp │ │ │ ├── push_back_impl.hpp │ │ │ ├── push_front_impl.hpp │ │ │ ├── reverse_fold_impl.hpp │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ ├── sequence_wrapper.hpp │ │ │ ├── single_element_iter.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── static_cast.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_fwd.hpp │ │ │ ├── traits_lambda_spec.hpp │ │ │ ├── transform_iter.hpp │ │ │ ├── type_wrapper.hpp │ │ │ ├── unwrap.hpp │ │ │ ├── value_wknd.hpp │ │ │ └── yes_no.hpp │ │ ├── back.hpp │ │ ├── back_fwd.hpp │ │ ├── back_inserter.hpp │ │ ├── base.hpp │ │ ├── begin.hpp │ │ ├── begin_end.hpp │ │ ├── begin_end_fwd.hpp │ │ ├── bind.hpp │ │ ├── bind_fwd.hpp │ │ ├── bitand.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── bool_fwd.hpp │ │ ├── clear.hpp │ │ ├── clear_fwd.hpp │ │ ├── comparison.hpp │ │ ├── contains.hpp │ │ ├── contains_fwd.hpp │ │ ├── copy.hpp │ │ ├── deref.hpp │ │ ├── distance.hpp │ │ ├── distance_fwd.hpp │ │ ├── divides.hpp │ │ ├── empty.hpp │ │ ├── empty_base.hpp │ │ ├── empty_fwd.hpp │ │ ├── end.hpp │ │ ├── equal_to.hpp │ │ ├── erase.hpp │ │ ├── erase_fwd.hpp │ │ ├── erase_key.hpp │ │ ├── erase_key_fwd.hpp │ │ ├── eval_if.hpp │ │ ├── find.hpp │ │ ├── find_if.hpp │ │ ├── fold.hpp │ │ ├── for_each.hpp │ │ ├── front.hpp │ │ ├── front_fwd.hpp │ │ ├── front_inserter.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── has_key.hpp │ │ ├── has_key_fwd.hpp │ │ ├── has_xxx.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inherit.hpp │ │ ├── insert.hpp │ │ ├── insert_fwd.hpp │ │ ├── insert_range.hpp │ │ ├── insert_range_fwd.hpp │ │ ├── inserter.hpp │ │ ├── int.hpp │ │ ├── int_fwd.hpp │ │ ├── integral_c.hpp │ │ ├── integral_c_fwd.hpp │ │ ├── integral_c_tag.hpp │ │ ├── is_placeholder.hpp │ │ ├── is_sequence.hpp │ │ ├── iter_fold.hpp │ │ ├── iter_fold_if.hpp │ │ ├── iterator_category.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_tags.hpp │ │ ├── joint_view.hpp │ │ ├── key_type_fwd.hpp │ │ ├── lambda.hpp │ │ ├── lambda_fwd.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── arity.hpp │ │ │ ├── list.hpp │ │ │ ├── map.hpp │ │ │ ├── unrolling.hpp │ │ │ └── vector.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ └── plain │ │ │ │ │ │ ├── list10.hpp │ │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ │ ├── list20.hpp │ │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ │ ├── list30.hpp │ │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ │ ├── list40.hpp │ │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ │ ├── list50.hpp │ │ │ │ │ │ └── list50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ └── tag.hpp │ │ │ ├── list0.hpp │ │ │ ├── list0_c.hpp │ │ │ ├── list10.hpp │ │ │ ├── list10_c.hpp │ │ │ ├── list20.hpp │ │ │ ├── list20_c.hpp │ │ │ ├── list30.hpp │ │ │ ├── list30_c.hpp │ │ │ ├── list40.hpp │ │ │ ├── list40_c.hpp │ │ │ ├── list50.hpp │ │ │ └── list50_c.hpp │ │ ├── logical.hpp │ │ ├── long.hpp │ │ ├── long_fwd.hpp │ │ ├── map.hpp │ │ ├── map │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── contains_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── map0.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── map10.hpp │ │ │ │ │ │ ├── map20.hpp │ │ │ │ │ │ ├── map30.hpp │ │ │ │ │ │ ├── map40.hpp │ │ │ │ │ │ └── map50.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── map10.hpp │ │ │ ├── map20.hpp │ │ │ ├── map30.hpp │ │ │ ├── map40.hpp │ │ │ └── map50.hpp │ │ ├── min.hpp │ │ ├── min_max.hpp │ │ ├── minus.hpp │ │ ├── multiplies.hpp │ │ ├── negate.hpp │ │ ├── next.hpp │ │ ├── next_prior.hpp │ │ ├── not.hpp │ │ ├── not_equal_to.hpp │ │ ├── numeric_cast.hpp │ │ ├── or.hpp │ │ ├── order_fwd.hpp │ │ ├── pair.hpp │ │ ├── pair_view.hpp │ │ ├── placeholders.hpp │ │ ├── plus.hpp │ │ ├── pop_back.hpp │ │ ├── pop_back_fwd.hpp │ │ ├── pop_front.hpp │ │ ├── pop_front_fwd.hpp │ │ ├── print.hpp │ │ ├── prior.hpp │ │ ├── protect.hpp │ │ ├── push_back.hpp │ │ ├── push_back_fwd.hpp │ │ ├── push_front.hpp │ │ ├── push_front_fwd.hpp │ │ ├── quote.hpp │ │ ├── remove.hpp │ │ ├── remove_if.hpp │ │ ├── reverse_fold.hpp │ │ ├── reverse_iter_fold.hpp │ │ ├── same_as.hpp │ │ ├── sequence_tag.hpp │ │ ├── sequence_tag_fwd.hpp │ │ ├── set │ │ │ ├── aux_ │ │ │ │ ├── at_impl.hpp │ │ │ │ ├── begin_end_impl.hpp │ │ │ │ ├── clear_impl.hpp │ │ │ │ ├── empty_impl.hpp │ │ │ │ ├── erase_impl.hpp │ │ │ │ ├── erase_key_impl.hpp │ │ │ │ ├── has_key_impl.hpp │ │ │ │ ├── insert_impl.hpp │ │ │ │ ├── insert_range_impl.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── key_type_impl.hpp │ │ │ │ ├── set0.hpp │ │ │ │ ├── size_impl.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── value_type_impl.hpp │ │ │ └── set0.hpp │ │ ├── single_view.hpp │ │ ├── size.hpp │ │ ├── size_fwd.hpp │ │ ├── size_t.hpp │ │ ├── size_t_fwd.hpp │ │ ├── sizeof.hpp │ │ ├── tag.hpp │ │ ├── times.hpp │ │ ├── transform.hpp │ │ ├── transform_view.hpp │ │ ├── unpack_args.hpp │ │ ├── value_type_fwd.hpp │ │ ├── vector.hpp │ │ ├── vector │ │ │ ├── aux_ │ │ │ │ ├── O1_size.hpp │ │ │ │ ├── at.hpp │ │ │ │ ├── back.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── front.hpp │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ ├── item.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── numbered.hpp │ │ │ │ ├── numbered_c.hpp │ │ │ │ ├── pop_back.hpp │ │ │ │ ├── pop_front.hpp │ │ │ │ ├── preprocessed │ │ │ │ │ ├── no_ctps │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ ├── plain │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ │ └── typeof_based │ │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── tag.hpp │ │ │ │ └── vector0.hpp │ │ │ ├── vector0.hpp │ │ │ ├── vector0_c.hpp │ │ │ ├── vector10.hpp │ │ │ ├── vector10_c.hpp │ │ │ ├── vector20.hpp │ │ │ ├── vector20_c.hpp │ │ │ ├── vector30.hpp │ │ │ ├── vector30_c.hpp │ │ │ ├── vector40.hpp │ │ │ ├── vector40_c.hpp │ │ │ ├── vector50.hpp │ │ │ └── vector50_c.hpp │ │ ├── void.hpp │ │ ├── void_fwd.hpp │ │ └── zip_view.hpp │ │ ├── multi_index │ │ ├── detail │ │ │ ├── access_specifier.hpp │ │ │ ├── adl_swap.hpp │ │ │ ├── archive_constructed.hpp │ │ │ ├── auto_space.hpp │ │ │ ├── base_type.hpp │ │ │ ├── bidir_node_iterator.hpp │ │ │ ├── bucket_array.hpp │ │ │ ├── converter.hpp │ │ │ ├── copy_map.hpp │ │ │ ├── do_not_copy_elements_tag.hpp │ │ │ ├── duplicates_iterator.hpp │ │ │ ├── has_tag.hpp │ │ │ ├── hash_index_args.hpp │ │ │ ├── hash_index_iterator.hpp │ │ │ ├── hash_index_node.hpp │ │ │ ├── header_holder.hpp │ │ │ ├── ignore_wstrict_aliasing.hpp │ │ │ ├── index_base.hpp │ │ │ ├── index_loader.hpp │ │ │ ├── index_matcher.hpp │ │ │ ├── index_node_base.hpp │ │ │ ├── index_saver.hpp │ │ │ ├── invariant_assert.hpp │ │ │ ├── is_index_list.hpp │ │ │ ├── is_transparent.hpp │ │ │ ├── iter_adaptor.hpp │ │ │ ├── modify_key_adaptor.hpp │ │ │ ├── no_duplicate_tags.hpp │ │ │ ├── node_type.hpp │ │ │ ├── ord_index_args.hpp │ │ │ ├── ord_index_impl.hpp │ │ │ ├── ord_index_impl_fwd.hpp │ │ │ ├── ord_index_node.hpp │ │ │ ├── ord_index_ops.hpp │ │ │ ├── promotes_arg.hpp │ │ │ ├── raw_ptr.hpp │ │ │ ├── restore_wstrict_aliasing.hpp │ │ │ ├── safe_mode.hpp │ │ │ ├── scope_guard.hpp │ │ │ ├── seq_index_node.hpp │ │ │ ├── seq_index_ops.hpp │ │ │ ├── serialization_version.hpp │ │ │ ├── uintptr_type.hpp │ │ │ ├── unbounded.hpp │ │ │ ├── value_compare.hpp │ │ │ └── vartempl_support.hpp │ │ ├── hashed_index.hpp │ │ ├── hashed_index_fwd.hpp │ │ ├── identity.hpp │ │ ├── identity_fwd.hpp │ │ ├── indexed_by.hpp │ │ ├── member.hpp │ │ ├── ordered_index.hpp │ │ ├── ordered_index_fwd.hpp │ │ ├── safe_mode_errors.hpp │ │ ├── sequenced_index.hpp │ │ ├── sequenced_index_fwd.hpp │ │ └── tag.hpp │ │ ├── multi_index_container.hpp │ │ ├── multi_index_container_fwd.hpp │ │ ├── next_prior.hpp │ │ ├── non_type.hpp │ │ ├── noncopyable.hpp │ │ ├── none.hpp │ │ ├── none_t.hpp │ │ ├── numeric │ │ └── conversion │ │ │ ├── bounds.hpp │ │ │ ├── cast.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── converter.hpp │ │ │ ├── converter_policies.hpp │ │ │ ├── detail │ │ │ ├── bounds.hpp │ │ │ ├── conversion_traits.hpp │ │ │ ├── converter.hpp │ │ │ ├── int_float_mixture.hpp │ │ │ ├── is_subranged.hpp │ │ │ ├── meta.hpp │ │ │ ├── numeric_cast_traits.hpp │ │ │ ├── old_numeric_cast.hpp │ │ │ ├── preprocessed │ │ │ │ ├── numeric_cast_traits_common.hpp │ │ │ │ └── numeric_cast_traits_long_long.hpp │ │ │ ├── sign_mixture.hpp │ │ │ └── udt_builtin_mixture.hpp │ │ │ ├── int_float_mixture_enum.hpp │ │ │ ├── numeric_cast_traits.hpp │ │ │ ├── sign_mixture_enum.hpp │ │ │ └── udt_builtin_mixture_enum.hpp │ │ ├── operators.hpp │ │ ├── optional.hpp │ │ ├── optional │ │ ├── bad_optional_access.hpp │ │ ├── detail │ │ │ ├── old_optional_implementation.hpp │ │ │ ├── optional_aligned_storage.hpp │ │ │ ├── optional_config.hpp │ │ │ ├── optional_factory_support.hpp │ │ │ ├── optional_reference_spec.hpp │ │ │ ├── optional_relops.hpp │ │ │ ├── optional_swap.hpp │ │ │ └── optional_trivially_copyable_base.hpp │ │ ├── optional.hpp │ │ ├── optional_fwd.hpp │ │ └── optional_io.hpp │ │ ├── parameter.hpp │ │ ├── parameter │ │ ├── aux_ │ │ │ ├── arg_list.hpp │ │ │ ├── cast.hpp │ │ │ ├── default.hpp │ │ │ ├── is_maybe.hpp │ │ │ ├── overloads.hpp │ │ │ ├── parameter_requirements.hpp │ │ │ ├── parenthesized_type.hpp │ │ │ ├── preprocessor │ │ │ │ ├── flatten.hpp │ │ │ │ └── for_each.hpp │ │ │ ├── result_of0.hpp │ │ │ ├── set.hpp │ │ │ ├── tag.hpp │ │ │ ├── tagged_argument.hpp │ │ │ ├── template_keyword.hpp │ │ │ ├── unwrap_cv_reference.hpp │ │ │ ├── void.hpp │ │ │ └── yesno.hpp │ │ ├── binding.hpp │ │ ├── config.hpp │ │ ├── keyword.hpp │ │ ├── macros.hpp │ │ ├── match.hpp │ │ ├── name.hpp │ │ ├── parameters.hpp │ │ ├── preprocessor.hpp │ │ └── value_type.hpp │ │ ├── pending │ │ ├── container_traits.hpp │ │ ├── detail │ │ │ └── property.hpp │ │ ├── lowest_bit.hpp │ │ ├── property.hpp │ │ └── queue.hpp │ │ ├── pointee.hpp │ │ ├── pointer_to_other.hpp │ │ ├── polymorphic_cast.hpp │ │ ├── predef.h │ │ ├── predef │ │ ├── architecture.h │ │ ├── architecture │ │ │ ├── alpha.h │ │ │ ├── arm.h │ │ │ ├── blackfin.h │ │ │ ├── convex.h │ │ │ ├── ia64.h │ │ │ ├── m68k.h │ │ │ ├── mips.h │ │ │ ├── parisc.h │ │ │ ├── ppc.h │ │ │ ├── ptx.h │ │ │ ├── pyramid.h │ │ │ ├── rs6k.h │ │ │ ├── sparc.h │ │ │ ├── superh.h │ │ │ ├── sys370.h │ │ │ ├── sys390.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ │ ├── 32.h │ │ │ │ └── 64.h │ │ │ └── z.h │ │ ├── compiler.h │ │ ├── compiler │ │ │ ├── borland.h │ │ │ ├── clang.h │ │ │ ├── comeau.h │ │ │ ├── compaq.h │ │ │ ├── diab.h │ │ │ ├── digitalmars.h │ │ │ ├── dignus.h │ │ │ ├── edg.h │ │ │ ├── ekopath.h │ │ │ ├── gcc.h │ │ │ ├── gcc_xml.h │ │ │ ├── greenhills.h │ │ │ ├── hp_acc.h │ │ │ ├── iar.h │ │ │ ├── ibm.h │ │ │ ├── intel.h │ │ │ ├── kai.h │ │ │ ├── llvm.h │ │ │ ├── metaware.h │ │ │ ├── metrowerks.h │ │ │ ├── microtec.h │ │ │ ├── mpw.h │ │ │ ├── nvcc.h │ │ │ ├── palm.h │ │ │ ├── pgi.h │ │ │ ├── sgi_mipspro.h │ │ │ ├── sunpro.h │ │ │ ├── tendra.h │ │ │ ├── visualc.h │ │ │ └── watcom.h │ │ ├── detail │ │ │ ├── _cassert.h │ │ │ ├── _exception.h │ │ │ ├── comp_detected.h │ │ │ ├── endian_compat.h │ │ │ ├── os_detected.h │ │ │ ├── platform_detected.h │ │ │ └── test.h │ │ ├── hardware.h │ │ ├── hardware │ │ │ ├── simd.h │ │ │ └── simd │ │ │ │ ├── arm.h │ │ │ │ ├── arm │ │ │ │ └── versions.h │ │ │ │ ├── ppc.h │ │ │ │ ├── ppc │ │ │ │ └── versions.h │ │ │ │ ├── x86.h │ │ │ │ ├── x86 │ │ │ │ └── versions.h │ │ │ │ ├── x86_amd.h │ │ │ │ └── x86_amd │ │ │ │ └── versions.h │ │ ├── language.h │ │ ├── language │ │ │ ├── cuda.h │ │ │ ├── objc.h │ │ │ ├── stdc.h │ │ │ └── stdcpp.h │ │ ├── library.h │ │ ├── library │ │ │ ├── c.h │ │ │ ├── c │ │ │ │ ├── _prefix.h │ │ │ │ ├── cloudabi.h │ │ │ │ ├── gnu.h │ │ │ │ ├── uc.h │ │ │ │ ├── vms.h │ │ │ │ └── zos.h │ │ │ ├── std.h │ │ │ └── std │ │ │ │ ├── _prefix.h │ │ │ │ ├── cxx.h │ │ │ │ ├── dinkumware.h │ │ │ │ ├── libcomo.h │ │ │ │ ├── modena.h │ │ │ │ ├── msl.h │ │ │ │ ├── roguewave.h │ │ │ │ ├── sgi.h │ │ │ │ ├── stdcpp3.h │ │ │ │ ├── stlport.h │ │ │ │ └── vacpp.h │ │ ├── make.h │ │ ├── os.h │ │ ├── os │ │ │ ├── aix.h │ │ │ ├── amigaos.h │ │ │ ├── android.h │ │ │ ├── beos.h │ │ │ ├── bsd.h │ │ │ ├── bsd │ │ │ │ ├── bsdi.h │ │ │ │ ├── dragonfly.h │ │ │ │ ├── free.h │ │ │ │ ├── net.h │ │ │ │ └── open.h │ │ │ ├── cygwin.h │ │ │ ├── haiku.h │ │ │ ├── hpux.h │ │ │ ├── ios.h │ │ │ ├── irix.h │ │ │ ├── linux.h │ │ │ ├── macos.h │ │ │ ├── os400.h │ │ │ ├── qnxnto.h │ │ │ ├── solaris.h │ │ │ ├── unix.h │ │ │ ├── vms.h │ │ │ └── windows.h │ │ ├── other.h │ │ ├── other │ │ │ └── endian.h │ │ ├── platform.h │ │ ├── platform │ │ │ ├── cloudabi.h │ │ │ ├── ios.h │ │ │ ├── mingw.h │ │ │ ├── mingw32.h │ │ │ ├── mingw64.h │ │ │ ├── windows_desktop.h │ │ │ ├── windows_phone.h │ │ │ ├── windows_runtime.h │ │ │ ├── windows_server.h │ │ │ ├── windows_store.h │ │ │ ├── windows_system.h │ │ │ └── windows_uwp.h │ │ ├── version.h │ │ └── version_number.h │ │ ├── preprocessor.hpp │ │ ├── preprocessor │ │ ├── arithmetic.hpp │ │ ├── arithmetic │ │ │ ├── add.hpp │ │ │ ├── dec.hpp │ │ │ ├── detail │ │ │ │ └── div_base.hpp │ │ │ ├── div.hpp │ │ │ ├── inc.hpp │ │ │ ├── mod.hpp │ │ │ ├── mul.hpp │ │ │ └── sub.hpp │ │ ├── array.hpp │ │ ├── array │ │ │ ├── data.hpp │ │ │ ├── detail │ │ │ │ └── get_data.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ ├── cat.hpp │ │ ├── comma_if.hpp │ │ ├── comparison.hpp │ │ ├── comparison │ │ │ ├── equal.hpp │ │ │ ├── greater.hpp │ │ │ ├── greater_equal.hpp │ │ │ ├── less.hpp │ │ │ ├── less_equal.hpp │ │ │ └── not_equal.hpp │ │ ├── config │ │ │ ├── config.hpp │ │ │ └── limits.hpp │ │ ├── control.hpp │ │ ├── control │ │ │ ├── deduce_d.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── while.hpp │ │ │ │ ├── edg │ │ │ │ │ └── while.hpp │ │ │ │ ├── msvc │ │ │ │ │ └── while.hpp │ │ │ │ └── while.hpp │ │ │ ├── expr_if.hpp │ │ │ ├── expr_iif.hpp │ │ │ ├── if.hpp │ │ │ ├── iif.hpp │ │ │ └── while.hpp │ │ ├── debug.hpp │ │ ├── debug │ │ │ ├── assert.hpp │ │ │ ├── error.hpp │ │ │ └── line.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── auto_rec.hpp │ │ │ ├── check.hpp │ │ │ ├── dmc │ │ │ │ └── auto_rec.hpp │ │ │ ├── is_binary.hpp │ │ │ ├── is_nullary.hpp │ │ │ ├── is_unary.hpp │ │ │ └── split.hpp │ │ ├── empty.hpp │ │ ├── enum.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── expand.hpp │ │ ├── expr_if.hpp │ │ ├── facilities.hpp │ │ ├── facilities │ │ │ ├── apply.hpp │ │ │ ├── detail │ │ │ │ └── is_empty.hpp │ │ │ ├── empty.hpp │ │ │ ├── expand.hpp │ │ │ ├── identity.hpp │ │ │ ├── intercept.hpp │ │ │ ├── is_1.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── is_empty_variadic.hpp │ │ │ └── overload.hpp │ │ ├── for.hpp │ │ ├── identity.hpp │ │ ├── if.hpp │ │ ├── inc.hpp │ │ ├── iterate.hpp │ │ ├── iteration.hpp │ │ ├── iteration │ │ │ ├── detail │ │ │ │ ├── bounds │ │ │ │ │ ├── lower1.hpp │ │ │ │ │ ├── lower2.hpp │ │ │ │ │ ├── lower3.hpp │ │ │ │ │ ├── lower4.hpp │ │ │ │ │ ├── lower5.hpp │ │ │ │ │ ├── upper1.hpp │ │ │ │ │ ├── upper2.hpp │ │ │ │ │ ├── upper3.hpp │ │ │ │ │ ├── upper4.hpp │ │ │ │ │ └── upper5.hpp │ │ │ │ ├── finish.hpp │ │ │ │ ├── iter │ │ │ │ │ ├── forward1.hpp │ │ │ │ │ ├── forward2.hpp │ │ │ │ │ ├── forward3.hpp │ │ │ │ │ ├── forward4.hpp │ │ │ │ │ ├── forward5.hpp │ │ │ │ │ ├── reverse1.hpp │ │ │ │ │ ├── reverse2.hpp │ │ │ │ │ ├── reverse3.hpp │ │ │ │ │ ├── reverse4.hpp │ │ │ │ │ └── reverse5.hpp │ │ │ │ ├── local.hpp │ │ │ │ ├── rlocal.hpp │ │ │ │ ├── self.hpp │ │ │ │ └── start.hpp │ │ │ ├── iterate.hpp │ │ │ ├── local.hpp │ │ │ └── self.hpp │ │ ├── library.hpp │ │ ├── list.hpp │ │ ├── list │ │ │ ├── adt.hpp │ │ │ ├── append.hpp │ │ │ ├── at.hpp │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── fold_left.hpp │ │ │ │ ├── edg │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ └── fold_right.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_seq.hpp │ │ │ ├── to_tuple.hpp │ │ │ └── transform.hpp │ │ ├── logical.hpp │ │ ├── logical │ │ │ ├── and.hpp │ │ │ ├── bitand.hpp │ │ │ ├── bitnor.hpp │ │ │ ├── bitor.hpp │ │ │ ├── bitxor.hpp │ │ │ ├── bool.hpp │ │ │ ├── compl.hpp │ │ │ ├── nor.hpp │ │ │ ├── not.hpp │ │ │ ├── or.hpp │ │ │ └── xor.hpp │ │ ├── punctuation.hpp │ │ ├── punctuation │ │ │ ├── comma.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── detail │ │ │ │ └── is_begin_parens.hpp │ │ │ ├── is_begin_parens.hpp │ │ │ ├── paren.hpp │ │ │ ├── paren_if.hpp │ │ │ └── remove_parens.hpp │ │ ├── repeat.hpp │ │ ├── repeat_from_to.hpp │ │ ├── repetition.hpp │ │ ├── repetition │ │ │ ├── deduce_r.hpp │ │ │ ├── deduce_z.hpp │ │ │ ├── detail │ │ │ │ ├── dmc │ │ │ │ │ └── for.hpp │ │ │ │ ├── edg │ │ │ │ │ └── for.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── msvc │ │ │ │ │ └── for.hpp │ │ │ ├── enum.hpp │ │ │ ├── enum_binary_params.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── enum_params_with_a_default.hpp │ │ │ ├── enum_params_with_defaults.hpp │ │ │ ├── enum_shifted.hpp │ │ │ ├── enum_shifted_binary_params.hpp │ │ │ ├── enum_shifted_params.hpp │ │ │ ├── enum_trailing.hpp │ │ │ ├── enum_trailing_binary_params.hpp │ │ │ ├── enum_trailing_params.hpp │ │ │ ├── for.hpp │ │ │ ├── repeat.hpp │ │ │ └── repeat_from_to.hpp │ │ ├── selection.hpp │ │ ├── selection │ │ │ ├── max.hpp │ │ │ └── min.hpp │ │ ├── seq.hpp │ │ ├── seq │ │ │ ├── cat.hpp │ │ │ ├── detail │ │ │ │ ├── binary_transform.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── split.hpp │ │ │ │ └── to_list_msvc.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── filter.hpp │ │ │ ├── first_n.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ ├── for_each.hpp │ │ │ ├── for_each_i.hpp │ │ │ ├── for_each_product.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── rest_n.hpp │ │ │ ├── reverse.hpp │ │ │ ├── seq.hpp │ │ │ ├── size.hpp │ │ │ ├── subseq.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_tuple.hpp │ │ │ ├── transform.hpp │ │ │ └── variadic_seq_to_seq.hpp │ │ ├── slot.hpp │ │ ├── slot │ │ │ ├── detail │ │ │ │ ├── counter.hpp │ │ │ │ ├── def.hpp │ │ │ │ ├── shared.hpp │ │ │ │ ├── slot1.hpp │ │ │ │ ├── slot2.hpp │ │ │ │ ├── slot3.hpp │ │ │ │ ├── slot4.hpp │ │ │ │ └── slot5.hpp │ │ │ └── slot.hpp │ │ ├── stringize.hpp │ │ ├── tuple.hpp │ │ ├── tuple │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── eat.hpp │ │ │ ├── elem.hpp │ │ │ ├── enum.hpp │ │ │ ├── insert.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── rem.hpp │ │ │ ├── remove.hpp │ │ │ ├── replace.hpp │ │ │ ├── reverse.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ └── to_seq.hpp │ │ ├── variadic.hpp │ │ ├── variadic │ │ │ ├── detail │ │ │ │ └── is_single_return.hpp │ │ │ ├── elem.hpp │ │ │ ├── size.hpp │ │ │ ├── to_array.hpp │ │ │ ├── to_list.hpp │ │ │ ├── to_seq.hpp │ │ │ └── to_tuple.hpp │ │ └── wstringize.hpp │ │ ├── property_map │ │ ├── dynamic_property_map.hpp │ │ ├── parallel │ │ │ ├── basic_reduce.hpp │ │ │ ├── detail │ │ │ │ └── untracked_pair.hpp │ │ │ ├── distributed_property_map.hpp │ │ │ ├── global_index_map.hpp │ │ │ ├── impl │ │ │ │ └── distributed_property_map.ipp │ │ │ ├── local_property_map.hpp │ │ │ ├── parallel_property_maps.hpp │ │ │ ├── process_group.hpp │ │ │ ├── simple_trigger.hpp │ │ │ ├── unsafe_serialize.hpp │ │ │ └── vector_property_map.hpp │ │ ├── property_map.hpp │ │ ├── shared_array_property_map.hpp │ │ ├── transform_value_property_map.hpp │ │ └── vector_property_map.hpp │ │ ├── property_tree │ │ ├── detail │ │ │ ├── exception_implementation.hpp │ │ │ ├── file_parser_error.hpp │ │ │ ├── ptree_implementation.hpp │ │ │ ├── ptree_utils.hpp │ │ │ ├── rapidxml.hpp │ │ │ ├── xml_parser_error.hpp │ │ │ ├── xml_parser_flags.hpp │ │ │ ├── xml_parser_read_rapidxml.hpp │ │ │ ├── xml_parser_utils.hpp │ │ │ ├── xml_parser_write.hpp │ │ │ └── xml_parser_writer_settings.hpp │ │ ├── exceptions.hpp │ │ ├── id_translator.hpp │ │ ├── ptree.hpp │ │ ├── ptree_fwd.hpp │ │ ├── stream_translator.hpp │ │ ├── string_path.hpp │ │ └── xml_parser.hpp │ │ ├── proto │ │ ├── args.hpp │ │ ├── core.hpp │ │ ├── deep_copy.hpp │ │ ├── detail │ │ │ ├── and_n.hpp │ │ │ ├── any.hpp │ │ │ ├── args.hpp │ │ │ ├── as_expr.hpp │ │ │ ├── as_lvalue.hpp │ │ │ ├── basic_expr.hpp │ │ │ ├── deduce_domain.hpp │ │ │ ├── deduce_domain_n.hpp │ │ │ ├── deep_copy.hpp │ │ │ ├── deprecated.hpp │ │ │ ├── expr.hpp │ │ │ ├── expr_funop.hpp │ │ │ ├── extends_funop.hpp │ │ │ ├── extends_funop_const.hpp │ │ │ ├── funop.hpp │ │ │ ├── generate_by_value.hpp │ │ │ ├── ignore_unused.hpp │ │ │ ├── is_noncopyable.hpp │ │ │ ├── lambda_matches.hpp │ │ │ ├── local.hpp │ │ │ ├── make_expr.hpp │ │ │ ├── make_expr_.hpp │ │ │ ├── make_expr_funop.hpp │ │ │ ├── matches_.hpp │ │ │ ├── or_n.hpp │ │ │ ├── poly_function.hpp │ │ │ ├── poly_function_funop.hpp │ │ │ ├── poly_function_traits.hpp │ │ │ ├── preprocessed │ │ │ │ ├── and_n.hpp │ │ │ │ ├── args.hpp │ │ │ │ ├── basic_expr.hpp │ │ │ │ ├── deduce_domain_n.hpp │ │ │ │ ├── deep_copy.hpp │ │ │ │ ├── expr.hpp │ │ │ │ ├── expr_variadic.hpp │ │ │ │ ├── extends_funop.hpp │ │ │ │ ├── extends_funop_const.hpp │ │ │ │ ├── funop.hpp │ │ │ │ ├── generate_by_value.hpp │ │ │ │ ├── lambda_matches.hpp │ │ │ │ ├── make_expr.hpp │ │ │ │ ├── make_expr_.hpp │ │ │ │ ├── make_expr_funop.hpp │ │ │ │ ├── matches_.hpp │ │ │ │ ├── or_n.hpp │ │ │ │ ├── poly_function_funop.hpp │ │ │ │ ├── poly_function_traits.hpp │ │ │ │ ├── template_arity_helper.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── unpack_expr_.hpp │ │ │ │ └── vararg_matches_impl.hpp │ │ │ ├── remove_typename.hpp │ │ │ ├── static_const.hpp │ │ │ ├── template_arity.hpp │ │ │ ├── template_arity_helper.hpp │ │ │ ├── traits.hpp │ │ │ ├── unpack_expr_.hpp │ │ │ └── vararg_matches_impl.hpp │ │ ├── domain.hpp │ │ ├── eval.hpp │ │ ├── expr.hpp │ │ ├── extends.hpp │ │ ├── fusion.hpp │ │ ├── generate.hpp │ │ ├── literal.hpp │ │ ├── make_expr.hpp │ │ ├── matches.hpp │ │ ├── operators.hpp │ │ ├── proto_fwd.hpp │ │ ├── repeat.hpp │ │ ├── tags.hpp │ │ ├── traits.hpp │ │ └── transform │ │ │ ├── arg.hpp │ │ │ ├── call.hpp │ │ │ ├── detail │ │ │ ├── call.hpp │ │ │ ├── construct_funop.hpp │ │ │ ├── construct_pod_funop.hpp │ │ │ ├── expand_pack.hpp │ │ │ ├── fold_impl.hpp │ │ │ ├── make.hpp │ │ │ ├── make_gcc_workaround.hpp │ │ │ ├── pack.hpp │ │ │ ├── pack_impl.hpp │ │ │ ├── pass_through_impl.hpp │ │ │ ├── preprocessed │ │ │ │ ├── call.hpp │ │ │ │ ├── construct_funop.hpp │ │ │ │ ├── construct_pod_funop.hpp │ │ │ │ ├── expand_pack.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── make.hpp │ │ │ │ ├── make_gcc_workaround.hpp │ │ │ │ ├── pack_impl.hpp │ │ │ │ ├── pass_through_impl.hpp │ │ │ │ └── when.hpp │ │ │ └── when.hpp │ │ │ ├── env.hpp │ │ │ ├── fold.hpp │ │ │ ├── fold_tree.hpp │ │ │ ├── impl.hpp │ │ │ ├── make.hpp │ │ │ ├── pass_through.hpp │ │ │ └── when.hpp │ │ ├── python.hpp │ │ ├── python │ │ ├── arg_from_python.hpp │ │ ├── args.hpp │ │ ├── args_fwd.hpp │ │ ├── back_reference.hpp │ │ ├── base_type_traits.hpp │ │ ├── bases.hpp │ │ ├── borrowed.hpp │ │ ├── call.hpp │ │ ├── call_method.hpp │ │ ├── cast.hpp │ │ ├── class.hpp │ │ ├── class_fwd.hpp │ │ ├── converter │ │ │ ├── arg_from_python.hpp │ │ │ ├── arg_to_python.hpp │ │ │ ├── arg_to_python_base.hpp │ │ │ ├── as_to_python_function.hpp │ │ │ ├── builtin_converters.hpp │ │ │ ├── constructor_function.hpp │ │ │ ├── context_result_converter.hpp │ │ │ ├── convertible_function.hpp │ │ │ ├── from_python.hpp │ │ │ ├── implicit.hpp │ │ │ ├── obj_mgr_arg_from_python.hpp │ │ │ ├── object_manager.hpp │ │ │ ├── pointer_type_id.hpp │ │ │ ├── pyobject_traits.hpp │ │ │ ├── pyobject_type.hpp │ │ │ ├── pytype_function.hpp │ │ │ ├── pytype_object_mgr_traits.hpp │ │ │ ├── registered.hpp │ │ │ ├── registered_pointee.hpp │ │ │ ├── registrations.hpp │ │ │ ├── registry.hpp │ │ │ ├── return_from_python.hpp │ │ │ ├── rvalue_from_python_data.hpp │ │ │ ├── shared_ptr_deleter.hpp │ │ │ ├── shared_ptr_from_python.hpp │ │ │ ├── shared_ptr_to_python.hpp │ │ │ └── to_python_function_type.hpp │ │ ├── copy_const_reference.hpp │ │ ├── copy_non_const_reference.hpp │ │ ├── data_members.hpp │ │ ├── def.hpp │ │ ├── def_visitor.hpp │ │ ├── default_call_policies.hpp │ │ ├── detail │ │ │ ├── borrowed_ptr.hpp │ │ │ ├── caller.hpp │ │ │ ├── config.hpp │ │ │ ├── construct.hpp │ │ │ ├── convertible.hpp │ │ │ ├── copy_ctor_mutates_rhs.hpp │ │ │ ├── cv_category.hpp │ │ │ ├── dealloc.hpp │ │ │ ├── decorated_type_id.hpp │ │ │ ├── decref_guard.hpp │ │ │ ├── def_helper.hpp │ │ │ ├── def_helper_fwd.hpp │ │ │ ├── defaults_def.hpp │ │ │ ├── defaults_gen.hpp │ │ │ ├── dependent.hpp │ │ │ ├── destroy.hpp │ │ │ ├── exception_handler.hpp │ │ │ ├── force_instantiate.hpp │ │ │ ├── indirect_traits.hpp │ │ │ ├── invoke.hpp │ │ │ ├── is_auto_ptr.hpp │ │ │ ├── is_shared_ptr.hpp │ │ │ ├── is_wrapper.hpp │ │ │ ├── is_xxx.hpp │ │ │ ├── make_keyword_range_fn.hpp │ │ │ ├── make_tuple.hpp │ │ │ ├── map_entry.hpp │ │ │ ├── mpl_lambda.hpp │ │ │ ├── msvc_typeinfo.hpp │ │ │ ├── none.hpp │ │ │ ├── not_specified.hpp │ │ │ ├── nullary_function_adaptor.hpp │ │ │ ├── operator_id.hpp │ │ │ ├── overloads_fwd.hpp │ │ │ ├── prefix.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── python22_fixed.h │ │ │ ├── python_type.hpp │ │ │ ├── raw_pyobject.hpp │ │ │ ├── referent_storage.hpp │ │ │ ├── scope.hpp │ │ │ ├── sfinae.hpp │ │ │ ├── signature.hpp │ │ │ ├── string_literal.hpp │ │ │ ├── target.hpp │ │ │ ├── translate_exception.hpp │ │ │ ├── type_list.hpp │ │ │ ├── type_list_impl.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── unwind_type.hpp │ │ │ ├── unwrap_type_id.hpp │ │ │ ├── unwrap_wrapper.hpp │ │ │ ├── value_arg.hpp │ │ │ ├── value_is_shared_ptr.hpp │ │ │ ├── value_is_xxx.hpp │ │ │ ├── void_ptr.hpp │ │ │ ├── void_return.hpp │ │ │ ├── wrap_python.hpp │ │ │ └── wrapper_base.hpp │ │ ├── dict.hpp │ │ ├── docstring_options.hpp │ │ ├── enum.hpp │ │ ├── errors.hpp │ │ ├── exception_translator.hpp │ │ ├── exec.hpp │ │ ├── extract.hpp │ │ ├── handle.hpp │ │ ├── handle_fwd.hpp │ │ ├── has_back_reference.hpp │ │ ├── implicit.hpp │ │ ├── import.hpp │ │ ├── init.hpp │ │ ├── instance_holder.hpp │ │ ├── iterator.hpp │ │ ├── list.hpp │ │ ├── long.hpp │ │ ├── lvalue_from_pytype.hpp │ │ ├── make_constructor.hpp │ │ ├── make_function.hpp │ │ ├── manage_new_object.hpp │ │ ├── module.hpp │ │ ├── module_init.hpp │ │ ├── numpy.hpp │ │ ├── numpy │ │ │ ├── config.hpp │ │ │ ├── dtype.hpp │ │ │ ├── internal.hpp │ │ │ ├── invoke_matching.hpp │ │ │ ├── matrix.hpp │ │ │ ├── ndarray.hpp │ │ │ ├── numpy_object_mgr_traits.hpp │ │ │ ├── scalars.hpp │ │ │ └── ufunc.hpp │ │ ├── object.hpp │ │ ├── object │ │ │ ├── add_to_namespace.hpp │ │ │ ├── class.hpp │ │ │ ├── class_detail.hpp │ │ │ ├── class_metadata.hpp │ │ │ ├── class_wrapper.hpp │ │ │ ├── enum_base.hpp │ │ │ ├── find_instance.hpp │ │ │ ├── forward.hpp │ │ │ ├── function.hpp │ │ │ ├── function_doc_signature.hpp │ │ │ ├── function_handle.hpp │ │ │ ├── function_object.hpp │ │ │ ├── inheritance.hpp │ │ │ ├── inheritance_query.hpp │ │ │ ├── instance.hpp │ │ │ ├── iterator.hpp │ │ │ ├── iterator_core.hpp │ │ │ ├── life_support.hpp │ │ │ ├── make_holder.hpp │ │ │ ├── make_instance.hpp │ │ │ ├── make_ptr_instance.hpp │ │ │ ├── pickle_support.hpp │ │ │ ├── pointer_holder.hpp │ │ │ ├── py_function.hpp │ │ │ ├── stl_iterator_core.hpp │ │ │ ├── value_holder.hpp │ │ │ └── value_holder_fwd.hpp │ │ ├── object_attributes.hpp │ │ ├── object_call.hpp │ │ ├── object_core.hpp │ │ ├── object_fwd.hpp │ │ ├── object_items.hpp │ │ ├── object_operators.hpp │ │ ├── object_protocol.hpp │ │ ├── object_protocol_core.hpp │ │ ├── object_slices.hpp │ │ ├── opaque_pointer_converter.hpp │ │ ├── operators.hpp │ │ ├── other.hpp │ │ ├── overloads.hpp │ │ ├── override.hpp │ │ ├── pointee.hpp │ │ ├── proxy.hpp │ │ ├── ptr.hpp │ │ ├── pure_virtual.hpp │ │ ├── raw_function.hpp │ │ ├── refcount.hpp │ │ ├── reference_existing_object.hpp │ │ ├── register_ptr_to_python.hpp │ │ ├── return_arg.hpp │ │ ├── return_by_value.hpp │ │ ├── return_internal_reference.hpp │ │ ├── return_opaque_pointer.hpp │ │ ├── return_value_policy.hpp │ │ ├── scope.hpp │ │ ├── self.hpp │ │ ├── signature.hpp │ │ ├── slice.hpp │ │ ├── slice_nil.hpp │ │ ├── ssize_t.hpp │ │ ├── stl_iterator.hpp │ │ ├── str.hpp │ │ ├── suite │ │ │ └── indexing │ │ │ │ ├── container_utils.hpp │ │ │ │ ├── detail │ │ │ │ └── indexing_suite_detail.hpp │ │ │ │ ├── indexing_suite.hpp │ │ │ │ └── vector_indexing_suite.hpp │ │ ├── tag.hpp │ │ ├── to_python_converter.hpp │ │ ├── to_python_indirect.hpp │ │ ├── to_python_value.hpp │ │ ├── tuple.hpp │ │ ├── type_id.hpp │ │ ├── with_custodian_and_ward.hpp │ │ └── wrapper.hpp │ │ ├── range │ │ ├── algorithm │ │ │ ├── copy.hpp │ │ │ ├── count.hpp │ │ │ ├── count_if.hpp │ │ │ ├── equal.hpp │ │ │ ├── find_if.hpp │ │ │ ├── sort.hpp │ │ │ └── stable_sort.hpp │ │ ├── algorithm_ext │ │ │ ├── iota.hpp │ │ │ └── is_sorted.hpp │ │ ├── as_literal.hpp │ │ ├── begin.hpp │ │ ├── concepts.hpp │ │ ├── config.hpp │ │ ├── const_iterator.hpp │ │ ├── detail │ │ │ ├── as_literal.hpp │ │ │ ├── begin.hpp │ │ │ ├── common.hpp │ │ │ ├── detail_str.hpp │ │ │ ├── end.hpp │ │ │ ├── extract_optional_type.hpp │ │ │ ├── has_member_size.hpp │ │ │ ├── implementation_help.hpp │ │ │ ├── misc_concept.hpp │ │ │ ├── msvc_has_iterator_workaround.hpp │ │ │ ├── range_return.hpp │ │ │ ├── remove_extent.hpp │ │ │ ├── safe_bool.hpp │ │ │ ├── sfinae.hpp │ │ │ ├── size_type.hpp │ │ │ ├── str_types.hpp │ │ │ └── value_type.hpp │ │ ├── difference_type.hpp │ │ ├── distance.hpp │ │ ├── empty.hpp │ │ ├── end.hpp │ │ ├── functions.hpp │ │ ├── has_range_iterator.hpp │ │ ├── irange.hpp │ │ ├── iterator.hpp │ │ ├── iterator_range.hpp │ │ ├── iterator_range_core.hpp │ │ ├── iterator_range_io.hpp │ │ ├── mutable_iterator.hpp │ │ ├── range_fwd.hpp │ │ ├── rbegin.hpp │ │ ├── rend.hpp │ │ ├── reverse_iterator.hpp │ │ ├── size.hpp │ │ ├── size_type.hpp │ │ └── value_type.hpp │ │ ├── ratio │ │ ├── config.hpp │ │ ├── detail │ │ │ ├── mpl │ │ │ │ ├── abs.hpp │ │ │ │ ├── gcd.hpp │ │ │ │ ├── lcm.hpp │ │ │ │ └── sign.hpp │ │ │ └── overflow_helpers.hpp │ │ ├── mpl │ │ │ └── rational_c_tag.hpp │ │ ├── ratio.hpp │ │ └── ratio_fwd.hpp │ │ ├── rational.hpp │ │ ├── ref.hpp │ │ ├── regex.hpp │ │ ├── regex │ │ ├── config.hpp │ │ ├── config │ │ │ ├── borland.hpp │ │ │ └── cwchar.hpp │ │ ├── icu.hpp │ │ ├── pattern_except.hpp │ │ ├── pending │ │ │ ├── object_cache.hpp │ │ │ ├── static_mutex.hpp │ │ │ └── unicode_iterator.hpp │ │ ├── regex_traits.hpp │ │ ├── user.hpp │ │ └── v4 │ │ │ ├── basic_regex.hpp │ │ │ ├── basic_regex_creator.hpp │ │ │ ├── basic_regex_parser.hpp │ │ │ ├── c_regex_traits.hpp │ │ │ ├── char_regex_traits.hpp │ │ │ ├── cpp_regex_traits.hpp │ │ │ ├── cregex.hpp │ │ │ ├── error_type.hpp │ │ │ ├── fileiter.hpp │ │ │ ├── instances.hpp │ │ │ ├── iterator_category.hpp │ │ │ ├── iterator_traits.hpp │ │ │ ├── match_flags.hpp │ │ │ ├── match_results.hpp │ │ │ ├── mem_block_cache.hpp │ │ │ ├── perl_matcher.hpp │ │ │ ├── perl_matcher_common.hpp │ │ │ ├── perl_matcher_non_recursive.hpp │ │ │ ├── perl_matcher_recursive.hpp │ │ │ ├── primary_transform.hpp │ │ │ ├── protected_call.hpp │ │ │ ├── regbase.hpp │ │ │ ├── regex.hpp │ │ │ ├── regex_format.hpp │ │ │ ├── regex_fwd.hpp │ │ │ ├── regex_grep.hpp │ │ │ ├── regex_iterator.hpp │ │ │ ├── regex_match.hpp │ │ │ ├── regex_merge.hpp │ │ │ ├── regex_raw_buffer.hpp │ │ │ ├── regex_replace.hpp │ │ │ ├── regex_search.hpp │ │ │ ├── regex_split.hpp │ │ │ ├── regex_token_iterator.hpp │ │ │ ├── regex_traits.hpp │ │ │ ├── regex_traits_defaults.hpp │ │ │ ├── regex_workaround.hpp │ │ │ ├── states.hpp │ │ │ ├── sub_match.hpp │ │ │ ├── syntax_type.hpp │ │ │ ├── u32regex_iterator.hpp │ │ │ ├── u32regex_token_iterator.hpp │ │ │ └── w32_regex_traits.hpp │ │ ├── regex_fwd.hpp │ │ ├── scoped_array.hpp │ │ ├── scoped_ptr.hpp │ │ ├── serialization │ │ ├── access.hpp │ │ ├── array.hpp │ │ ├── array_optimization.hpp │ │ ├── array_wrapper.hpp │ │ ├── assume_abstract.hpp │ │ ├── base_object.hpp │ │ ├── collection_size_type.hpp │ │ ├── config.hpp │ │ ├── extended_type_info.hpp │ │ ├── extended_type_info_no_rtti.hpp │ │ ├── extended_type_info_typeid.hpp │ │ ├── factory.hpp │ │ ├── force_include.hpp │ │ ├── is_bitwise_serializable.hpp │ │ ├── item_version_type.hpp │ │ ├── level.hpp │ │ ├── level_enum.hpp │ │ ├── nvp.hpp │ │ ├── serialization.hpp │ │ ├── singleton.hpp │ │ ├── smart_cast.hpp │ │ ├── split_free.hpp │ │ ├── split_member.hpp │ │ ├── state_saver.hpp │ │ ├── static_warning.hpp │ │ ├── string.hpp │ │ ├── strong_typedef.hpp │ │ ├── throw_exception.hpp │ │ ├── tracking.hpp │ │ ├── tracking_enum.hpp │ │ ├── traits.hpp │ │ ├── type_info_implementation.hpp │ │ ├── utility.hpp │ │ ├── version.hpp │ │ ├── void_cast.hpp │ │ ├── void_cast_fwd.hpp │ │ └── wrapper.hpp │ │ ├── shared_array.hpp │ │ ├── shared_ptr.hpp │ │ ├── smart_ptr.hpp │ │ ├── smart_ptr │ │ ├── allocate_shared_array.hpp │ │ ├── bad_weak_ptr.hpp │ │ ├── detail │ │ │ ├── atomic_count.hpp │ │ │ ├── atomic_count_gcc.hpp │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ ├── atomic_count_nt.hpp │ │ │ ├── atomic_count_pt.hpp │ │ │ ├── atomic_count_spin.hpp │ │ │ ├── atomic_count_std_atomic.hpp │ │ │ ├── atomic_count_sync.hpp │ │ │ ├── atomic_count_win32.hpp │ │ │ ├── lightweight_mutex.hpp │ │ │ ├── local_counted_base.hpp │ │ │ ├── local_sp_deleter.hpp │ │ │ ├── lwm_nop.hpp │ │ │ ├── lwm_pthreads.hpp │ │ │ ├── lwm_win32_cs.hpp │ │ │ ├── operator_bool.hpp │ │ │ ├── quick_allocator.hpp │ │ │ ├── shared_count.hpp │ │ │ ├── sp_convertible.hpp │ │ │ ├── sp_counted_base.hpp │ │ │ ├── sp_counted_base_acc_ia64.hpp │ │ │ ├── sp_counted_base_aix.hpp │ │ │ ├── sp_counted_base_clang.hpp │ │ │ ├── sp_counted_base_cw_ppc.hpp │ │ │ ├── sp_counted_base_gcc_ia64.hpp │ │ │ ├── sp_counted_base_gcc_mips.hpp │ │ │ ├── sp_counted_base_gcc_ppc.hpp │ │ │ ├── sp_counted_base_gcc_sparc.hpp │ │ │ ├── sp_counted_base_gcc_x86.hpp │ │ │ ├── sp_counted_base_nt.hpp │ │ │ ├── sp_counted_base_pt.hpp │ │ │ ├── sp_counted_base_snc_ps3.hpp │ │ │ ├── sp_counted_base_spin.hpp │ │ │ ├── sp_counted_base_std_atomic.hpp │ │ │ ├── sp_counted_base_sync.hpp │ │ │ ├── sp_counted_base_vacpp_ppc.hpp │ │ │ ├── sp_counted_base_w32.hpp │ │ │ ├── sp_counted_impl.hpp │ │ │ ├── sp_disable_deprecated.hpp │ │ │ ├── sp_forward.hpp │ │ │ ├── sp_has_sync.hpp │ │ │ ├── sp_interlocked.hpp │ │ │ ├── sp_noexcept.hpp │ │ │ ├── sp_nullptr_t.hpp │ │ │ ├── spinlock.hpp │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ ├── spinlock_nt.hpp │ │ │ ├── spinlock_pool.hpp │ │ │ ├── spinlock_pt.hpp │ │ │ ├── spinlock_std_atomic.hpp │ │ │ ├── spinlock_sync.hpp │ │ │ ├── spinlock_w32.hpp │ │ │ └── yield_k.hpp │ │ ├── enable_shared_from_this.hpp │ │ ├── intrusive_ptr.hpp │ │ ├── make_shared.hpp │ │ ├── make_shared_array.hpp │ │ ├── make_shared_object.hpp │ │ ├── scoped_array.hpp │ │ ├── scoped_ptr.hpp │ │ ├── shared_array.hpp │ │ ├── shared_ptr.hpp │ │ └── weak_ptr.hpp │ │ ├── spirit │ │ ├── home │ │ │ └── classic │ │ │ │ ├── actor.hpp │ │ │ │ ├── actor │ │ │ │ ├── assign_actor.hpp │ │ │ │ ├── assign_key_actor.hpp │ │ │ │ ├── clear_actor.hpp │ │ │ │ ├── decrement_actor.hpp │ │ │ │ ├── erase_actor.hpp │ │ │ │ ├── increment_actor.hpp │ │ │ │ ├── insert_at_actor.hpp │ │ │ │ ├── insert_key_actor.hpp │ │ │ │ ├── push_back_actor.hpp │ │ │ │ ├── push_front_actor.hpp │ │ │ │ ├── ref_actor.hpp │ │ │ │ ├── ref_const_ref_actor.hpp │ │ │ │ ├── ref_const_ref_const_ref_a.hpp │ │ │ │ ├── ref_const_ref_value_actor.hpp │ │ │ │ ├── ref_value_actor.hpp │ │ │ │ └── swap_actor.hpp │ │ │ │ ├── attribute.hpp │ │ │ │ ├── attribute │ │ │ │ ├── closure.hpp │ │ │ │ ├── closure_context.hpp │ │ │ │ ├── closure_fwd.hpp │ │ │ │ └── parametric.hpp │ │ │ │ ├── core.hpp │ │ │ │ ├── core │ │ │ │ ├── assert.hpp │ │ │ │ ├── composite │ │ │ │ │ ├── actions.hpp │ │ │ │ │ ├── alternative.hpp │ │ │ │ │ ├── composite.hpp │ │ │ │ │ ├── difference.hpp │ │ │ │ │ ├── directives.hpp │ │ │ │ │ ├── epsilon.hpp │ │ │ │ │ ├── exclusive_or.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── alternative.ipp │ │ │ │ │ │ ├── difference.ipp │ │ │ │ │ │ ├── directives.ipp │ │ │ │ │ │ ├── exclusive_or.ipp │ │ │ │ │ │ ├── intersection.ipp │ │ │ │ │ │ ├── kleene_star.ipp │ │ │ │ │ │ ├── list.ipp │ │ │ │ │ │ ├── optional.ipp │ │ │ │ │ │ ├── positive.ipp │ │ │ │ │ │ ├── sequence.ipp │ │ │ │ │ │ ├── sequential_and.ipp │ │ │ │ │ │ └── sequential_or.ipp │ │ │ │ │ ├── intersection.hpp │ │ │ │ │ ├── kleene_star.hpp │ │ │ │ │ ├── list.hpp │ │ │ │ │ ├── no_actions.hpp │ │ │ │ │ ├── operators.hpp │ │ │ │ │ ├── optional.hpp │ │ │ │ │ ├── positive.hpp │ │ │ │ │ ├── sequence.hpp │ │ │ │ │ ├── sequential_and.hpp │ │ │ │ │ └── sequential_or.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── match.ipp │ │ │ │ │ ├── match_attr_traits.ipp │ │ │ │ │ └── parser.ipp │ │ │ │ ├── match.hpp │ │ │ │ ├── nil.hpp │ │ │ │ ├── non_terminal │ │ │ │ │ ├── grammar.hpp │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── grammar.ipp │ │ │ │ │ │ ├── object_with_id.ipp │ │ │ │ │ │ ├── rule.ipp │ │ │ │ │ │ ├── static.hpp │ │ │ │ │ │ └── subrule.ipp │ │ │ │ │ ├── parser_context.hpp │ │ │ │ │ ├── parser_id.hpp │ │ │ │ │ ├── rule.hpp │ │ │ │ │ ├── subrule.hpp │ │ │ │ │ └── subrule_fwd.hpp │ │ │ │ ├── parser.hpp │ │ │ │ ├── primitives │ │ │ │ │ ├── impl │ │ │ │ │ │ ├── numerics.ipp │ │ │ │ │ │ └── primitives.ipp │ │ │ │ │ ├── numerics.hpp │ │ │ │ │ ├── numerics_fwd.hpp │ │ │ │ │ └── primitives.hpp │ │ │ │ ├── safe_bool.hpp │ │ │ │ └── scanner │ │ │ │ │ ├── impl │ │ │ │ │ └── skipper.ipp │ │ │ │ │ ├── scanner.hpp │ │ │ │ │ ├── scanner_fwd.hpp │ │ │ │ │ ├── skipper.hpp │ │ │ │ │ └── skipper_fwd.hpp │ │ │ │ ├── debug.hpp │ │ │ │ ├── debug │ │ │ │ ├── debug_node.hpp │ │ │ │ ├── impl │ │ │ │ │ └── parser_names.ipp │ │ │ │ ├── minimal.hpp │ │ │ │ └── parser_names.hpp │ │ │ │ ├── dynamic.hpp │ │ │ │ ├── dynamic │ │ │ │ ├── for.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── conditions.ipp │ │ │ │ │ ├── select.ipp │ │ │ │ │ └── switch.ipp │ │ │ │ ├── lazy.hpp │ │ │ │ ├── rule_alias.hpp │ │ │ │ ├── select.hpp │ │ │ │ ├── stored_rule.hpp │ │ │ │ ├── stored_rule_fwd.hpp │ │ │ │ ├── switch.hpp │ │ │ │ └── while.hpp │ │ │ │ ├── iterator │ │ │ │ ├── fixed_size_queue.hpp │ │ │ │ ├── multi_pass.hpp │ │ │ │ └── multi_pass_fwd.hpp │ │ │ │ ├── meta │ │ │ │ ├── as_parser.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── parser_traits.ipp │ │ │ │ │ └── refactoring.ipp │ │ │ │ ├── parser_traits.hpp │ │ │ │ └── refactoring.hpp │ │ │ │ ├── namespace.hpp │ │ │ │ ├── phoenix.hpp │ │ │ │ ├── phoenix │ │ │ │ ├── actor.hpp │ │ │ │ ├── binders.hpp │ │ │ │ ├── casts.hpp │ │ │ │ ├── closures.hpp │ │ │ │ ├── composite.hpp │ │ │ │ ├── functions.hpp │ │ │ │ ├── new.hpp │ │ │ │ ├── operators.hpp │ │ │ │ ├── primitives.hpp │ │ │ │ ├── special_ops.hpp │ │ │ │ ├── statements.hpp │ │ │ │ ├── tuple_helpers.hpp │ │ │ │ └── tuples.hpp │ │ │ │ ├── utility │ │ │ │ ├── chset.hpp │ │ │ │ ├── chset_operators.hpp │ │ │ │ ├── confix.hpp │ │ │ │ ├── confix_fwd.hpp │ │ │ │ ├── distinct.hpp │ │ │ │ ├── distinct_fwd.hpp │ │ │ │ ├── escape_char.hpp │ │ │ │ ├── escape_char_fwd.hpp │ │ │ │ ├── impl │ │ │ │ │ ├── chset.ipp │ │ │ │ │ ├── chset │ │ │ │ │ │ ├── basic_chset.hpp │ │ │ │ │ │ ├── basic_chset.ipp │ │ │ │ │ │ ├── range_run.hpp │ │ │ │ │ │ └── range_run.ipp │ │ │ │ │ ├── chset_operators.ipp │ │ │ │ │ ├── confix.ipp │ │ │ │ │ ├── escape_char.ipp │ │ │ │ │ └── lists.ipp │ │ │ │ ├── lists.hpp │ │ │ │ └── lists_fwd.hpp │ │ │ │ └── version.hpp │ │ └── include │ │ │ ├── classic_actions.hpp │ │ │ ├── classic_actor.hpp │ │ │ ├── classic_attribute.hpp │ │ │ ├── classic_chset.hpp │ │ │ ├── classic_closure.hpp │ │ │ ├── classic_confix.hpp │ │ │ ├── classic_core.hpp │ │ │ ├── classic_distinct.hpp │ │ │ ├── classic_dynamic.hpp │ │ │ ├── classic_escape_char.hpp │ │ │ ├── classic_lists.hpp │ │ │ ├── classic_multi_pass.hpp │ │ │ ├── classic_numerics.hpp │ │ │ ├── classic_operators.hpp │ │ │ ├── classic_rule.hpp │ │ │ ├── phoenix1.hpp │ │ │ └── phoenix1_binders.hpp │ │ ├── static_assert.hpp │ │ ├── swap.hpp │ │ ├── system │ │ ├── api_config.hpp │ │ ├── config.hpp │ │ ├── detail │ │ │ ├── error_code.ipp │ │ │ └── local_free_on_destruction.hpp │ │ ├── error_code.hpp │ │ └── system_error.hpp │ │ ├── thread │ │ ├── condition_variable.hpp │ │ ├── csbl │ │ │ ├── functional.hpp │ │ │ ├── memory │ │ │ │ ├── allocator_arg.hpp │ │ │ │ ├── allocator_traits.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── pointer_traits.hpp │ │ │ │ ├── scoped_allocator.hpp │ │ │ │ ├── shared_ptr.hpp │ │ │ │ └── unique_ptr.hpp │ │ │ ├── tuple.hpp │ │ │ └── vector.hpp │ │ ├── cv_status.hpp │ │ ├── detail │ │ │ ├── atomic_redef_macros.hpp │ │ │ ├── atomic_undef_macros.hpp │ │ │ ├── config.hpp │ │ │ ├── delete.hpp │ │ │ ├── invoke.hpp │ │ │ ├── invoker.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── lockable_wrapper.hpp │ │ │ ├── make_tuple_indices.hpp │ │ │ ├── memory.hpp │ │ │ ├── move.hpp │ │ │ ├── nullary_function.hpp │ │ │ ├── platform.hpp │ │ │ ├── platform_time.hpp │ │ │ ├── thread.hpp │ │ │ ├── thread_heap_alloc.hpp │ │ │ ├── thread_interruption.hpp │ │ │ ├── tss_hooks.hpp │ │ │ ├── variadic_footer.hpp │ │ │ └── variadic_header.hpp │ │ ├── exceptional_ptr.hpp │ │ ├── exceptions.hpp │ │ ├── executor.hpp │ │ ├── executors │ │ │ ├── executor.hpp │ │ │ ├── executor_adaptor.hpp │ │ │ ├── generic_executor_ref.hpp │ │ │ └── work.hpp │ │ ├── future.hpp │ │ ├── futures │ │ │ ├── future_error.hpp │ │ │ ├── future_error_code.hpp │ │ │ ├── future_status.hpp │ │ │ ├── is_future_type.hpp │ │ │ ├── launch.hpp │ │ │ ├── wait_for_all.hpp │ │ │ └── wait_for_any.hpp │ │ ├── is_locked_by_this_thread.hpp │ │ ├── lock_algorithms.hpp │ │ ├── lock_guard.hpp │ │ ├── lock_options.hpp │ │ ├── lock_types.hpp │ │ ├── lockable_traits.hpp │ │ ├── locks.hpp │ │ ├── mutex.hpp │ │ ├── once.hpp │ │ ├── pthread │ │ │ ├── condition_variable.hpp │ │ │ ├── condition_variable_fwd.hpp │ │ │ ├── mutex.hpp │ │ │ ├── once.hpp │ │ │ ├── once_atomic.hpp │ │ │ ├── pthread_helpers.hpp │ │ │ ├── pthread_mutex_scoped_lock.hpp │ │ │ ├── thread_data.hpp │ │ │ └── thread_heap_alloc.hpp │ │ ├── shared_lock_guard.hpp │ │ ├── thread_only.hpp │ │ ├── thread_time.hpp │ │ ├── tss.hpp │ │ ├── win32 │ │ │ ├── basic_timed_mutex.hpp │ │ │ ├── condition_variable.hpp │ │ │ ├── interlocked_read.hpp │ │ │ ├── mutex.hpp │ │ │ ├── once.hpp │ │ │ ├── thread_data.hpp │ │ │ ├── thread_heap_alloc.hpp │ │ │ └── thread_primitives.hpp │ │ └── xtime.hpp │ │ ├── throw_exception.hpp │ │ ├── token_functions.hpp │ │ ├── token_iterator.hpp │ │ ├── tokenizer.hpp │ │ ├── tti │ │ ├── detail │ │ │ ├── dcomp_mem_fun.hpp │ │ │ ├── ddeftype.hpp │ │ │ ├── dftclass.hpp │ │ │ ├── dmem_fun.hpp │ │ │ ├── dnullptr.hpp │ │ │ └── dptmf.hpp │ │ ├── gen │ │ │ ├── has_member_function_gen.hpp │ │ │ └── namespace_gen.hpp │ │ └── has_member_function.hpp │ │ ├── tuple │ │ ├── detail │ │ │ └── tuple_basic.hpp │ │ ├── tuple.hpp │ │ └── tuple_comparison.hpp │ │ ├── type.hpp │ │ ├── type_index.hpp │ │ ├── type_index │ │ ├── ctti_type_index.hpp │ │ ├── detail │ │ │ ├── compile_time_type_info.hpp │ │ │ ├── ctti_register_class.hpp │ │ │ └── stl_register_class.hpp │ │ ├── stl_type_index.hpp │ │ └── type_index_facade.hpp │ │ ├── type_traits.hpp │ │ ├── type_traits │ │ ├── add_const.hpp │ │ ├── add_cv.hpp │ │ ├── add_lvalue_reference.hpp │ │ ├── add_pointer.hpp │ │ ├── add_reference.hpp │ │ ├── add_rvalue_reference.hpp │ │ ├── add_volatile.hpp │ │ ├── aligned_storage.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_traits.hpp │ │ ├── common_type.hpp │ │ ├── composite_traits.hpp │ │ ├── conditional.hpp │ │ ├── conversion_traits.hpp │ │ ├── copy_cv.hpp │ │ ├── cv_traits.hpp │ │ ├── decay.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ ├── bool_trait_undef.hpp │ │ │ ├── common_arithmetic_type.hpp │ │ │ ├── common_type_impl.hpp │ │ │ ├── composite_member_pointer_type.hpp │ │ │ ├── composite_pointer_type.hpp │ │ │ ├── config.hpp │ │ │ ├── has_binary_operator.hpp │ │ │ ├── has_postfix_operator.hpp │ │ │ ├── has_prefix_operator.hpp │ │ │ ├── is_function_ptr_helper.hpp │ │ │ ├── is_function_ptr_tester.hpp │ │ │ ├── is_likely_lambda.hpp │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ ├── mp_defer.hpp │ │ │ └── yes_no_type.hpp │ │ ├── extent.hpp │ │ ├── floating_point_promotion.hpp │ │ ├── function_traits.hpp │ │ ├── has_bit_and.hpp │ │ ├── has_bit_and_assign.hpp │ │ ├── has_bit_or.hpp │ │ ├── has_bit_or_assign.hpp │ │ ├── has_bit_xor.hpp │ │ ├── has_bit_xor_assign.hpp │ │ ├── has_complement.hpp │ │ ├── has_dereference.hpp │ │ ├── has_divides.hpp │ │ ├── has_divides_assign.hpp │ │ ├── has_equal_to.hpp │ │ ├── has_greater.hpp │ │ ├── has_greater_equal.hpp │ │ ├── has_left_shift.hpp │ │ ├── has_left_shift_assign.hpp │ │ ├── has_less.hpp │ │ ├── has_less_equal.hpp │ │ ├── has_logical_and.hpp │ │ ├── has_logical_not.hpp │ │ ├── has_logical_or.hpp │ │ ├── has_minus.hpp │ │ ├── has_minus_assign.hpp │ │ ├── has_modulus.hpp │ │ ├── has_modulus_assign.hpp │ │ ├── has_multiplies.hpp │ │ ├── has_multiplies_assign.hpp │ │ ├── has_negate.hpp │ │ ├── has_new_operator.hpp │ │ ├── has_not_equal_to.hpp │ │ ├── has_nothrow_assign.hpp │ │ ├── has_nothrow_constructor.hpp │ │ ├── has_nothrow_copy.hpp │ │ ├── has_nothrow_destructor.hpp │ │ ├── has_plus.hpp │ │ ├── has_plus_assign.hpp │ │ ├── has_post_decrement.hpp │ │ ├── has_post_increment.hpp │ │ ├── has_pre_decrement.hpp │ │ ├── has_pre_increment.hpp │ │ ├── has_right_shift.hpp │ │ ├── has_right_shift_assign.hpp │ │ ├── has_trivial_assign.hpp │ │ ├── has_trivial_constructor.hpp │ │ ├── has_trivial_copy.hpp │ │ ├── has_trivial_destructor.hpp │ │ ├── has_trivial_move_assign.hpp │ │ ├── has_trivial_move_constructor.hpp │ │ ├── has_unary_minus.hpp │ │ ├── has_unary_plus.hpp │ │ ├── has_virtual_destructor.hpp │ │ ├── integral_constant.hpp │ │ ├── integral_promotion.hpp │ │ ├── intrinsics.hpp │ │ ├── is_abstract.hpp │ │ ├── is_arithmetic.hpp │ │ ├── is_array.hpp │ │ ├── is_assignable.hpp │ │ ├── is_base_and_derived.hpp │ │ ├── is_base_of.hpp │ │ ├── is_class.hpp │ │ ├── is_complete.hpp │ │ ├── is_complex.hpp │ │ ├── is_compound.hpp │ │ ├── is_const.hpp │ │ ├── is_constructible.hpp │ │ ├── is_convertible.hpp │ │ ├── is_copy_assignable.hpp │ │ ├── is_copy_constructible.hpp │ │ ├── is_default_constructible.hpp │ │ ├── is_destructible.hpp │ │ ├── is_empty.hpp │ │ ├── is_enum.hpp │ │ ├── is_final.hpp │ │ ├── is_float.hpp │ │ ├── is_floating_point.hpp │ │ ├── is_function.hpp │ │ ├── is_fundamental.hpp │ │ ├── is_integral.hpp │ │ ├── is_list_constructible.hpp │ │ ├── is_lvalue_reference.hpp │ │ ├── is_member_function_pointer.hpp │ │ ├── is_member_object_pointer.hpp │ │ ├── is_member_pointer.hpp │ │ ├── is_nothrow_move_assignable.hpp │ │ ├── is_nothrow_move_constructible.hpp │ │ ├── is_nothrow_swappable.hpp │ │ ├── is_object.hpp │ │ ├── is_pod.hpp │ │ ├── is_pointer.hpp │ │ ├── is_polymorphic.hpp │ │ ├── is_reference.hpp │ │ ├── is_rvalue_reference.hpp │ │ ├── is_same.hpp │ │ ├── is_scalar.hpp │ │ ├── is_signed.hpp │ │ ├── is_stateless.hpp │ │ ├── is_union.hpp │ │ ├── is_unsigned.hpp │ │ ├── is_virtual_base_of.hpp │ │ ├── is_void.hpp │ │ ├── is_volatile.hpp │ │ ├── make_signed.hpp │ │ ├── make_unsigned.hpp │ │ ├── make_void.hpp │ │ ├── object_traits.hpp │ │ ├── promote.hpp │ │ ├── rank.hpp │ │ ├── remove_all_extents.hpp │ │ ├── remove_bounds.hpp │ │ ├── remove_const.hpp │ │ ├── remove_cv.hpp │ │ ├── remove_cv_ref.hpp │ │ ├── remove_extent.hpp │ │ ├── remove_pointer.hpp │ │ ├── remove_reference.hpp │ │ ├── remove_volatile.hpp │ │ ├── same_traits.hpp │ │ ├── transform_traits.hpp │ │ ├── type_identity.hpp │ │ └── type_with_alignment.hpp │ │ ├── typeof │ │ ├── decltype.hpp │ │ ├── dmc │ │ │ └── typeof_impl.hpp │ │ ├── encode_decode.hpp │ │ ├── encode_decode_params.hpp │ │ ├── int_encoding.hpp │ │ ├── integral_template_param.hpp │ │ ├── message.hpp │ │ ├── modifiers.hpp │ │ ├── msvc │ │ │ └── typeof_impl.hpp │ │ ├── native.hpp │ │ ├── pointers_data_members.hpp │ │ ├── register_functions.hpp │ │ ├── register_functions_iterate.hpp │ │ ├── register_fundamental.hpp │ │ ├── register_mem_functions.hpp │ │ ├── template_encoding.hpp │ │ ├── template_template_param.hpp │ │ ├── type_encoding.hpp │ │ ├── type_template_param.hpp │ │ ├── typeof.hpp │ │ ├── typeof_impl.hpp │ │ ├── unsupported.hpp │ │ ├── vector.hpp │ │ ├── vector100.hpp │ │ ├── vector150.hpp │ │ ├── vector200.hpp │ │ └── vector50.hpp │ │ ├── unordered │ │ ├── detail │ │ │ ├── fwd.hpp │ │ │ ├── implementation.hpp │ │ │ ├── map.hpp │ │ │ └── set.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_map_fwd.hpp │ │ ├── unordered_set.hpp │ │ └── unordered_set_fwd.hpp │ │ ├── unordered_map.hpp │ │ ├── unordered_set.hpp │ │ ├── utility.hpp │ │ ├── utility │ │ ├── addressof.hpp │ │ ├── base_from_member.hpp │ │ ├── binary.hpp │ │ ├── compare_pointees.hpp │ │ ├── declval.hpp │ │ ├── detail │ │ │ └── result_of_iterate.hpp │ │ ├── enable_if.hpp │ │ ├── identity_type.hpp │ │ ├── result_of.hpp │ │ ├── swap.hpp │ │ └── value_init.hpp │ │ ├── version.hpp │ │ ├── visit_each.hpp │ │ ├── weak_ptr.hpp │ │ ├── winapi │ │ ├── access_rights.hpp │ │ ├── basic_types.hpp │ │ ├── character_code_conversion.hpp │ │ ├── config.hpp │ │ ├── dll.hpp │ │ ├── error_codes.hpp │ │ ├── error_handling.hpp │ │ ├── event.hpp │ │ ├── get_current_process.hpp │ │ ├── get_current_process_id.hpp │ │ ├── get_current_thread.hpp │ │ ├── get_current_thread_id.hpp │ │ ├── get_last_error.hpp │ │ ├── get_process_times.hpp │ │ ├── get_thread_times.hpp │ │ ├── handles.hpp │ │ ├── heap_memory.hpp │ │ ├── local_memory.hpp │ │ ├── semaphore.hpp │ │ ├── system.hpp │ │ ├── thread.hpp │ │ ├── thread_pool.hpp │ │ ├── time.hpp │ │ ├── timers.hpp │ │ └── wait.hpp │ │ └── xpressive │ │ ├── basic_regex.hpp │ │ ├── detail │ │ ├── core │ │ │ ├── access.hpp │ │ │ ├── action.hpp │ │ │ ├── adaptor.hpp │ │ │ ├── finder.hpp │ │ │ ├── flow_control.hpp │ │ │ ├── icase.hpp │ │ │ ├── linker.hpp │ │ │ ├── list.hpp │ │ │ ├── matcher │ │ │ │ ├── alternate_end_matcher.hpp │ │ │ │ ├── alternate_matcher.hpp │ │ │ │ ├── any_matcher.hpp │ │ │ │ ├── assert_bol_matcher.hpp │ │ │ │ ├── assert_bos_matcher.hpp │ │ │ │ ├── assert_eol_matcher.hpp │ │ │ │ ├── assert_eos_matcher.hpp │ │ │ │ ├── assert_line_base.hpp │ │ │ │ ├── assert_word_matcher.hpp │ │ │ │ ├── attr_end_matcher.hpp │ │ │ │ ├── attr_matcher.hpp │ │ │ │ ├── charset_matcher.hpp │ │ │ │ ├── end_matcher.hpp │ │ │ │ ├── epsilon_matcher.hpp │ │ │ │ ├── keeper_matcher.hpp │ │ │ │ ├── literal_matcher.hpp │ │ │ │ ├── logical_newline_matcher.hpp │ │ │ │ ├── lookahead_matcher.hpp │ │ │ │ ├── lookbehind_matcher.hpp │ │ │ │ ├── mark_begin_matcher.hpp │ │ │ │ ├── mark_end_matcher.hpp │ │ │ │ ├── mark_matcher.hpp │ │ │ │ ├── optional_matcher.hpp │ │ │ │ ├── posix_charset_matcher.hpp │ │ │ │ ├── range_matcher.hpp │ │ │ │ ├── regex_byref_matcher.hpp │ │ │ │ ├── regex_matcher.hpp │ │ │ │ ├── repeat_begin_matcher.hpp │ │ │ │ ├── repeat_end_matcher.hpp │ │ │ │ ├── set_matcher.hpp │ │ │ │ ├── simple_repeat_matcher.hpp │ │ │ │ ├── string_matcher.hpp │ │ │ │ └── true_matcher.hpp │ │ │ ├── matchers.hpp │ │ │ ├── optimize.hpp │ │ │ ├── peeker.hpp │ │ │ ├── quant_style.hpp │ │ │ ├── regex_domain.hpp │ │ │ ├── regex_impl.hpp │ │ │ ├── results_cache.hpp │ │ │ ├── state.hpp │ │ │ ├── sub_match_impl.hpp │ │ │ └── sub_match_vector.hpp │ │ ├── detail_fwd.hpp │ │ ├── dynamic │ │ │ ├── matchable.hpp │ │ │ └── sequence.hpp │ │ ├── static │ │ │ ├── compile.hpp │ │ │ ├── grammar.hpp │ │ │ ├── is_pure.hpp │ │ │ ├── modifier.hpp │ │ │ ├── placeholders.hpp │ │ │ ├── static.hpp │ │ │ ├── transforms │ │ │ │ ├── as_action.hpp │ │ │ │ ├── as_alternate.hpp │ │ │ │ ├── as_independent.hpp │ │ │ │ ├── as_inverse.hpp │ │ │ │ ├── as_marker.hpp │ │ │ │ ├── as_matcher.hpp │ │ │ │ ├── as_modifier.hpp │ │ │ │ ├── as_quantifier.hpp │ │ │ │ ├── as_sequence.hpp │ │ │ │ └── as_set.hpp │ │ │ ├── transmogrify.hpp │ │ │ ├── type_traits.hpp │ │ │ ├── visitor.hpp │ │ │ └── width_of.hpp │ │ └── utility │ │ │ ├── algorithm.hpp │ │ │ ├── any.hpp │ │ │ ├── boyer_moore.hpp │ │ │ ├── chset │ │ │ ├── basic_chset.hpp │ │ │ ├── basic_chset.ipp │ │ │ ├── chset.hpp │ │ │ ├── range_run.hpp │ │ │ └── range_run.ipp │ │ │ ├── cons.hpp │ │ │ ├── counted_base.hpp │ │ │ ├── dont_care.hpp │ │ │ ├── hash_peek_bitset.hpp │ │ │ ├── ignore_unused.hpp │ │ │ ├── literals.hpp │ │ │ ├── never_true.hpp │ │ │ ├── save_restore.hpp │ │ │ ├── sequence_stack.hpp │ │ │ ├── symbols.hpp │ │ │ ├── tracking_ptr.hpp │ │ │ ├── traits_utils.hpp │ │ │ └── width.hpp │ │ ├── match_results.hpp │ │ ├── regex_algorithms.hpp │ │ ├── regex_constants.hpp │ │ ├── regex_error.hpp │ │ ├── regex_iterator.hpp │ │ ├── regex_primitives.hpp │ │ ├── regex_token_iterator.hpp │ │ ├── regex_traits.hpp │ │ ├── sub_match.hpp │ │ ├── traits │ │ ├── c_regex_traits.hpp │ │ ├── cpp_regex_traits.hpp │ │ └── detail │ │ │ └── c_ctype.hpp │ │ ├── xpressive_fwd.hpp │ │ └── xpressive_static.hpp ├── khash.h ├── kseq.h ├── pcg │ ├── pcg_extras.hpp │ ├── pcg_random.hpp │ └── pcg_uint128.hpp ├── prob │ ├── prob.cpp │ └── prob.hpp ├── seqan │ ├── seqan │ └── seqan-library-2.4.0 │ │ ├── include │ │ └── seqan │ │ │ ├── align.h │ │ │ ├── align │ │ │ ├── align_base.h │ │ │ ├── align_cols.h │ │ │ ├── align_config.h │ │ │ ├── align_interface_wrapper.h │ │ │ ├── align_iterator_base.h │ │ │ ├── align_metafunctions.h │ │ │ ├── align_traceback.h │ │ │ ├── aligned_sequence_concept.h │ │ │ ├── alignment_algorithm_tags.h │ │ │ ├── alignment_operations.h │ │ │ ├── dp_algorithm_impl.h │ │ │ ├── dp_align_simd_helper.h │ │ │ ├── dp_band.h │ │ │ ├── dp_cell.h │ │ │ ├── dp_cell_affine.h │ │ │ ├── dp_cell_dynamic.h │ │ │ ├── dp_cell_linear.h │ │ │ ├── dp_context.h │ │ │ ├── dp_formula.h │ │ │ ├── dp_formula_affine.h │ │ │ ├── dp_formula_dynamic.h │ │ │ ├── dp_formula_linear.h │ │ │ ├── dp_matrix.h │ │ │ ├── dp_matrix_navigator.h │ │ │ ├── dp_matrix_navigator_score_matrix.h │ │ │ ├── dp_matrix_navigator_score_matrix_sparse.h │ │ │ ├── dp_matrix_navigator_trace_matrix.h │ │ │ ├── dp_matrix_sparse.h │ │ │ ├── dp_meta_info.h │ │ │ ├── dp_profile.h │ │ │ ├── dp_scout.h │ │ │ ├── dp_scout_simd.h │ │ │ ├── dp_setup.h │ │ │ ├── dp_trace_segment.h │ │ │ ├── dp_traceback_adaptor.h │ │ │ ├── dp_traceback_impl.h │ │ │ ├── evaluate_alignment.h │ │ │ ├── fragment.h │ │ │ ├── gap_anchor.h │ │ │ ├── gapped_value_type.h │ │ │ ├── gaps_anchor.h │ │ │ ├── gaps_array.h │ │ │ ├── gaps_base.h │ │ │ ├── gaps_iterator_anchor.h │ │ │ ├── gaps_iterator_array.h │ │ │ ├── gaps_iterator_base.h │ │ │ ├── global_alignment_banded.h │ │ │ ├── global_alignment_hirschberg_impl.h │ │ │ ├── global_alignment_myers_hirschberg_impl.h │ │ │ ├── global_alignment_myers_impl.h │ │ │ ├── global_alignment_specialized.h │ │ │ ├── global_alignment_unbanded.h │ │ │ ├── local_alignment_banded.h │ │ │ ├── local_alignment_banded_waterman_eggert_impl.h │ │ │ ├── local_alignment_enumeration.h │ │ │ ├── local_alignment_enumeration_banded.h │ │ │ ├── local_alignment_enumeration_unbanded.h │ │ │ ├── local_alignment_unbanded.h │ │ │ ├── local_alignment_waterman_eggert_impl.h │ │ │ └── matrix_base.h │ │ │ ├── align_extend.h │ │ │ ├── align_extend │ │ │ ├── align_extend.h │ │ │ ├── align_extend_base.h │ │ │ └── dp_scout_xdrop.h │ │ │ ├── align_parallel.h │ │ │ ├── align_parallel │ │ │ ├── async_wave_execution_interface.h │ │ │ ├── dp_kernel_adaptor.h │ │ │ ├── dp_parallel_execution_policies.h │ │ │ ├── dp_parallel_scout.h │ │ │ ├── dp_parallel_scout_simd.h │ │ │ ├── dp_settings.h │ │ │ ├── dp_traits.h │ │ │ ├── parallel_align_interface.h │ │ │ ├── wavefront_alignment_executor.h │ │ │ ├── wavefront_alignment_result.h │ │ │ ├── wavefront_alignment_scheduler.h │ │ │ ├── wavefront_alignment_task.h │ │ │ ├── wavefront_alignment_thread_local_storage.h │ │ │ ├── wavefront_task.h │ │ │ ├── wavefront_task_event.h │ │ │ ├── wavefront_task_executor.h │ │ │ ├── wavefront_task_queue.h │ │ │ ├── wavefront_task_scheduler.h │ │ │ └── wavefront_task_util.h │ │ │ ├── align_profile.h │ │ │ ├── align_profile │ │ │ ├── add_to_profile.h │ │ │ └── score_profile_seq.h │ │ │ ├── align_split.h │ │ │ ├── align_split │ │ │ ├── align_split_interface.h │ │ │ └── dp_scout_split.h │ │ │ ├── alignment_free.h │ │ │ ├── alignment_free │ │ │ ├── af_d2.h │ │ │ ├── af_d2star.h │ │ │ ├── af_d2z.h │ │ │ ├── af_n2.h │ │ │ ├── alignment_free_base.h │ │ │ ├── alignment_free_comparison.h │ │ │ └── kmer_functions.h │ │ │ ├── arg_parse.h │ │ │ ├── arg_parse │ │ │ ├── arg_parse_argument.h │ │ │ ├── arg_parse_ctd_support.h │ │ │ ├── arg_parse_doc.h │ │ │ ├── arg_parse_exceptions.h │ │ │ ├── arg_parse_option.h │ │ │ ├── arg_parse_parse.h │ │ │ ├── arg_parse_type_support.h │ │ │ ├── arg_parse_version_check.h │ │ │ ├── argument_parser.h │ │ │ ├── tool_doc.h │ │ │ └── xml_support.h │ │ │ ├── bam_io.h │ │ │ ├── bam_io │ │ │ ├── bam_alignment_record.h │ │ │ ├── bam_alignment_record_util.h │ │ │ ├── bam_file.h │ │ │ ├── bam_header_record.h │ │ │ ├── bam_index_bai.h │ │ │ ├── bam_io_context.h │ │ │ ├── bam_sam_conversion.h │ │ │ ├── bam_scanner_cache.h │ │ │ ├── bam_tags_dict.h │ │ │ ├── cigar.h │ │ │ ├── read_bam.h │ │ │ ├── read_sam.h │ │ │ ├── write_bam.h │ │ │ └── write_sam.h │ │ │ ├── basic.h │ │ │ ├── basic │ │ │ ├── aggregate_concept.h │ │ │ ├── allocator_chunkpool.h │ │ │ ├── allocator_interface.h │ │ │ ├── allocator_multipool.h │ │ │ ├── allocator_simple.h │ │ │ ├── allocator_singlepool.h │ │ │ ├── allocator_to_std.h │ │ │ ├── alphabet_adapt_builtins.h │ │ │ ├── alphabet_bio.h │ │ │ ├── alphabet_concept.h │ │ │ ├── alphabet_math.h │ │ │ ├── alphabet_profile.h │ │ │ ├── alphabet_qualities.h │ │ │ ├── alphabet_residue.h │ │ │ ├── alphabet_residue_funcs.h │ │ │ ├── alphabet_residue_tabs.h │ │ │ ├── alphabet_simple_type.h │ │ │ ├── alphabet_storage.h │ │ │ ├── array_construct_destruct.h │ │ │ ├── basic_aggregate.h │ │ │ ├── basic_allocator.h │ │ │ ├── basic_alphabet.h │ │ │ ├── basic_concept.h │ │ │ ├── basic_container.h │ │ │ ├── basic_debug.h │ │ │ ├── basic_device.h │ │ │ ├── basic_exception.h │ │ │ ├── basic_functors.h │ │ │ ├── basic_fundamental.h │ │ │ ├── basic_iterator.h │ │ │ ├── basic_math.h │ │ │ ├── basic_metaprogramming.h │ │ │ ├── basic_parallelism.h │ │ │ ├── basic_proxy.h │ │ │ ├── basic_smart_pointer.h │ │ │ ├── basic_stream.h │ │ │ ├── basic_tangle.h │ │ │ ├── basic_type.h │ │ │ ├── basic_view.h │ │ │ ├── boost_preprocessor_subset.h │ │ │ ├── builtin_functions.h │ │ │ ├── concept_checking.h │ │ │ ├── container_concept.h │ │ │ ├── debug_helper.h │ │ │ ├── debug_test_system.h │ │ │ ├── fundamental_chunking.h │ │ │ ├── fundamental_comparison.h │ │ │ ├── fundamental_concepts.h │ │ │ ├── fundamental_conversion.h │ │ │ ├── fundamental_metafunctions.h │ │ │ ├── fundamental_tags.h │ │ │ ├── fundamental_transport.h │ │ │ ├── holder_base.h │ │ │ ├── holder_simple.h │ │ │ ├── holder_tristate.h │ │ │ ├── hosted_type_interface.h │ │ │ ├── iterator_adapt_pointer.h │ │ │ ├── iterator_adapt_std.h │ │ │ ├── iterator_adaptor.h │ │ │ ├── iterator_base.h │ │ │ ├── iterator_concept.h │ │ │ ├── iterator_counting.h │ │ │ ├── iterator_interface.h │ │ │ ├── iterator_position.h │ │ │ ├── iterator_range.h │ │ │ ├── iterator_zip.h │ │ │ ├── macro_deprecated.h │ │ │ ├── math_functions.h │ │ │ ├── math_log_space_value.h │ │ │ ├── metaprogramming_control.h │ │ │ ├── metaprogramming_enable_if.h │ │ │ ├── metaprogramming_logic.h │ │ │ ├── metaprogramming_math.h │ │ │ ├── metaprogramming_type.h │ │ │ ├── metaprogramming_type_algebra.h │ │ │ ├── pair_base.h │ │ │ ├── pair_bit_compressed.h │ │ │ ├── pair_packed.h │ │ │ ├── profiling.h │ │ │ ├── property_map_concept.h │ │ │ ├── proxy_base.h │ │ │ ├── proxy_iterator.h │ │ │ ├── test_system.h │ │ │ ├── triple_base.h │ │ │ ├── triple_packed.h │ │ │ ├── tuple_base.h │ │ │ ├── tuple_bit_compressed.h │ │ │ └── volatile_ptr.h │ │ │ ├── bed_io.h │ │ │ ├── bed_io │ │ │ ├── bed_file.h │ │ │ ├── bed_record.h │ │ │ ├── read_bed.h │ │ │ └── write_bed.h │ │ │ ├── blast.h │ │ │ ├── blast │ │ │ ├── blast_base.h │ │ │ ├── blast_io_context.h │ │ │ ├── blast_record.h │ │ │ ├── blast_report_out.h │ │ │ ├── blast_statistics.h │ │ │ ├── blast_tabular.h │ │ │ ├── blast_tabular_in.h │ │ │ ├── blast_tabular_lowlevel.h │ │ │ └── blast_tabular_out.h │ │ │ ├── consensus.h │ │ │ ├── consensus │ │ │ ├── consensus_aligner.h │ │ │ ├── consensus_aligner_interface.h │ │ │ ├── consensus_alignment_options.h │ │ │ ├── consensus_base.h │ │ │ ├── consensus_builder.h │ │ │ ├── consensus_library.h │ │ │ ├── consensus_realign.h │ │ │ ├── consensus_score.h │ │ │ ├── overlap_info_computation.h │ │ │ └── overlapper.h │ │ │ ├── file.h │ │ │ ├── file │ │ │ ├── file_base.h │ │ │ ├── file_cstyle.h │ │ │ ├── file_forwards.h │ │ │ ├── file_interface.h │ │ │ ├── file_mapping.h │ │ │ ├── file_page.h │ │ │ ├── string_external.h │ │ │ └── string_mmap.h │ │ │ ├── find.h │ │ │ ├── find │ │ │ ├── find_abndm.h │ │ │ ├── find_ahocorasick.h │ │ │ ├── find_base.h │ │ │ ├── find_begin.h │ │ │ ├── find_bndm.h │ │ │ ├── find_bom.h │ │ │ ├── find_hamming_simple.h │ │ │ ├── find_horspool.h │ │ │ ├── find_lambda.h │ │ │ ├── find_multi.h │ │ │ ├── find_multiple_bfam.h │ │ │ ├── find_multiple_shiftand.h │ │ │ ├── find_myers_ukkonen.h │ │ │ ├── find_pattern_base.h │ │ │ ├── find_pex.h │ │ │ ├── find_score.h │ │ │ ├── find_set_horspool.h │ │ │ ├── find_shiftand.h │ │ │ ├── find_shiftor.h │ │ │ ├── find_simple.h │ │ │ ├── find_wild_shiftand.h │ │ │ └── find_wumanber.h │ │ │ ├── gff_io.h │ │ │ ├── gff_io │ │ │ ├── gff_file.h │ │ │ └── gff_io_base.h │ │ │ ├── graph_algorithms.h │ │ │ ├── graph_algorithms │ │ │ ├── all_pairs_shortest_path.h │ │ │ ├── bellman_ford.h │ │ │ ├── bipartite_matching.h │ │ │ ├── breadth_first_search.h │ │ │ ├── connected_components.h │ │ │ ├── depth_first_search.h │ │ │ ├── dijkstra.h │ │ │ ├── floyd_warshall.h │ │ │ ├── ford_fulkerson.h │ │ │ ├── graph_algorithm_heap_tree.h │ │ │ ├── graph_algorithm_hmm.h │ │ │ ├── graph_algorithm_lis_his.h │ │ │ ├── kruskal.h │ │ │ ├── maximum_weighted_matching.h │ │ │ ├── path_growing.h │ │ │ ├── prim.h │ │ │ ├── single_source_shortest_path.h │ │ │ ├── strongly_connected_compnents.h │ │ │ ├── topological_sort.h │ │ │ ├── transitive_closure.h │ │ │ ├── weakly_connected_components.h │ │ │ └── weighted_bipartite_matching.h │ │ │ ├── graph_align.h │ │ │ ├── graph_align │ │ │ ├── graph_algorithm_refine_align.h │ │ │ ├── graph_algorithm_refine_aligngraph.h │ │ │ ├── graph_algorithm_refine_annotation.h │ │ │ ├── graph_algorithm_refine_exact.h │ │ │ ├── graph_algorithm_refine_exact_iterative.h │ │ │ ├── graph_algorithm_refine_fragment.h │ │ │ ├── graph_algorithm_refine_inexact.h │ │ │ ├── graph_algorithm_refine_scoring.h │ │ │ ├── graph_impl_align.h │ │ │ └── graph_impl_align_adapt.h │ │ │ ├── graph_msa.h │ │ │ ├── graph_msa │ │ │ ├── graph_align_tcoffee_base.h │ │ │ ├── graph_align_tcoffee_distance.h │ │ │ ├── graph_align_tcoffee_guidetree.h │ │ │ ├── graph_align_tcoffee_io.h │ │ │ ├── graph_align_tcoffee_kmer.h │ │ │ ├── graph_align_tcoffee_library.h │ │ │ ├── graph_align_tcoffee_msa.h │ │ │ ├── graph_align_tcoffee_progressive.h │ │ │ └── graph_align_tcoffee_refinement.h │ │ │ ├── graph_types.h │ │ │ ├── graph_types │ │ │ ├── graph_base.h │ │ │ ├── graph_drawing.h │ │ │ ├── graph_edgestump.h │ │ │ ├── graph_idmanager.h │ │ │ ├── graph_impl_automaton.h │ │ │ ├── graph_impl_directed.h │ │ │ ├── graph_impl_hmm.h │ │ │ ├── graph_impl_oracle.h │ │ │ ├── graph_impl_tree.h │ │ │ ├── graph_impl_trie.h │ │ │ ├── graph_impl_undirected.h │ │ │ ├── graph_impl_wordgraph.h │ │ │ ├── graph_interface.h │ │ │ ├── graph_iterator.h │ │ │ ├── graph_iterator_adjacency.h │ │ │ ├── graph_iterator_bfs.h │ │ │ ├── graph_iterator_dfs.h │ │ │ ├── graph_iterator_edge.h │ │ │ ├── graph_iterator_outedge.h │ │ │ ├── graph_iterator_vertex.h │ │ │ ├── graph_utility_parsing.h │ │ │ ├── property_map_generic.h │ │ │ ├── property_map_internal.h │ │ │ └── property_map_internal_pointer.h │ │ │ ├── index.h │ │ │ ├── index │ │ │ ├── find2_backtracking.h │ │ │ ├── find2_base.h │ │ │ ├── find2_functors.h │ │ │ ├── find2_index.h │ │ │ ├── find2_index_approx.h │ │ │ ├── find2_index_multi.h │ │ │ ├── find2_vstree_factory.h │ │ │ ├── find_backtracking.h │ │ │ ├── find_index.h │ │ │ ├── find_index_approx.h │ │ │ ├── find_index_binary.h │ │ │ ├── find_index_esa.h │ │ │ ├── find_index_lambda.h │ │ │ ├── find_index_qgram.h │ │ │ ├── find_pigeonhole.h │ │ │ ├── find_quasar.h │ │ │ ├── find_swift.h │ │ │ ├── index_base.h │ │ │ ├── index_bidirectional.h │ │ │ ├── index_bidirectional_stree.h │ │ │ ├── index_bifm.h │ │ │ ├── index_bifm_stree.h │ │ │ ├── index_bwt.h │ │ │ ├── index_childtab.h │ │ │ ├── index_device.h │ │ │ ├── index_dfi.h │ │ │ ├── index_esa_algs.h │ │ │ ├── index_esa_algs_multi.h │ │ │ ├── index_esa_base.h │ │ │ ├── index_esa_drawing.h │ │ │ ├── index_esa_stree.h │ │ │ ├── index_fm.h │ │ │ ├── index_fm_compressed_sa.h │ │ │ ├── index_fm_compressed_sa_iterator.h │ │ │ ├── index_fm_dox.h │ │ │ ├── index_fm_lf_table.h │ │ │ ├── index_fm_rank_dictionary_base.h │ │ │ ├── index_fm_rank_dictionary_levels.h │ │ │ ├── index_fm_rank_dictionary_naive.h │ │ │ ├── index_fm_rank_dictionary_wt.h │ │ │ ├── index_fm_right_array_binary_tree.h │ │ │ ├── index_fm_right_array_binary_tree_iterator.h │ │ │ ├── index_fm_sparse_string.h │ │ │ ├── index_fm_stree.h │ │ │ ├── index_forwards.h │ │ │ ├── index_lcp.h │ │ │ ├── index_lcp_tree.h │ │ │ ├── index_pizzachili.h │ │ │ ├── index_pizzachili_find.h │ │ │ ├── index_pizzachili_string.h │ │ │ ├── index_qgram.h │ │ │ ├── index_qgram_bucketrefinement.h │ │ │ ├── index_qgram_openaddressing.h │ │ │ ├── index_qgram_stree.h │ │ │ ├── index_sa_btree.h │ │ │ ├── index_sa_bwtwalk.h │ │ │ ├── index_sa_lss.h │ │ │ ├── index_sa_mm.h │ │ │ ├── index_sa_qsort.h │ │ │ ├── index_sa_stree.h │ │ │ ├── index_sa_truncated.h │ │ │ ├── index_shawarma.h │ │ │ ├── index_shims.h │ │ │ ├── index_skew3.h │ │ │ ├── index_skew7.h │ │ │ ├── index_skew7_multi.h │ │ │ ├── index_view.h │ │ │ ├── index_wotd.h │ │ │ ├── pipe_merger3.h │ │ │ ├── pipe_merger7.h │ │ │ ├── pizzachili_api.h │ │ │ ├── pump_extender3.h │ │ │ ├── pump_extender7.h │ │ │ ├── pump_lcp_core.h │ │ │ ├── pump_separator7.h │ │ │ ├── radix.h │ │ │ ├── repeat_base.h │ │ │ ├── shape_base.h │ │ │ ├── shape_gapped.h │ │ │ ├── shape_minimizer.h │ │ │ ├── shape_onegapped.h │ │ │ ├── shape_predefined.h │ │ │ └── shape_threshold.h │ │ │ ├── journaled_set.h │ │ │ ├── journaled_set │ │ │ ├── journal_alignment_interface.h │ │ │ ├── journal_alignment_traceback_adaptor.h │ │ │ ├── journaled_set_base.h │ │ │ ├── journaled_set_impl.h │ │ │ ├── journaled_set_join.h │ │ │ ├── journaled_set_join_config.h │ │ │ ├── journaled_set_join_global_align_compact.h │ │ │ ├── journaled_set_join_global_align_manhatten.h │ │ │ ├── journaled_set_journal_trace_descriptor.h │ │ │ └── score_biaffine.h │ │ │ ├── journaled_string_tree.h │ │ │ ├── journaled_string_tree │ │ │ ├── delta_map.h │ │ │ ├── delta_map_entry.h │ │ │ ├── delta_map_iterator.h │ │ │ ├── delta_store.h │ │ │ ├── journaled_string_tree_base.h │ │ │ ├── journaled_string_tree_impl.h │ │ │ ├── journaled_string_tree_sequence_buffer.h │ │ │ ├── journaled_string_tree_traverser.h │ │ │ ├── journaled_string_tree_traverser_node.h │ │ │ ├── journaled_string_tree_traverser_util.h │ │ │ ├── jst_extension_base.h │ │ │ ├── jst_extension_horspool.h │ │ │ ├── jst_extension_myers_ukkonen.h │ │ │ ├── jst_extension_shiftand.h │ │ │ ├── jst_extension_shiftor.h │ │ │ ├── observable.h │ │ │ └── stack_observer.h │ │ │ ├── map.h │ │ │ ├── map │ │ │ ├── map_adapter_stl.h │ │ │ ├── map_base.h │ │ │ ├── map_chooser.h │ │ │ ├── map_skiplist.h │ │ │ ├── map_vector.h │ │ │ ├── sumlist.h │ │ │ ├── sumlist_mini.h │ │ │ └── sumlist_skip.h │ │ │ ├── math.h │ │ │ ├── math │ │ │ ├── math_common_factor.h │ │ │ ├── math_operators.h │ │ │ └── math_rational.h │ │ │ ├── misc │ │ │ ├── accumulators.h │ │ │ ├── base.h │ │ │ ├── bit_twiddling.h │ │ │ ├── bit_twiddling_functors.h │ │ │ ├── dequeue.h │ │ │ ├── edit_environment.h │ │ │ ├── interval_tree.h │ │ │ ├── map.h │ │ │ ├── memset.h │ │ │ ├── name_store_cache.h │ │ │ ├── priority_type_base.h │ │ │ ├── priority_type_heap.h │ │ │ ├── set.h │ │ │ ├── svg.h │ │ │ ├── terminal.h │ │ │ └── union_find.h │ │ │ ├── modifier.h │ │ │ ├── modifier │ │ │ ├── cyclic_shape.h │ │ │ ├── modifier_alphabet.h │ │ │ ├── modifier_alphabet_expansion.h │ │ │ ├── modifier_cyclic_shape.h │ │ │ ├── modifier_functors.h │ │ │ ├── modifier_iterator.h │ │ │ ├── modifier_padding.h │ │ │ ├── modifier_position.h │ │ │ ├── modifier_reverse.h │ │ │ ├── modifier_shortcuts.h │ │ │ ├── modifier_string.h │ │ │ └── modifier_view.h │ │ │ ├── parallel.h │ │ │ ├── parallel │ │ │ ├── enumerable_thread_local.h │ │ │ ├── enumerable_thread_local_iterator.h │ │ │ ├── parallel_algorithms.h │ │ │ ├── parallel_atomic_misc.h │ │ │ ├── parallel_atomic_primitives.h │ │ │ ├── parallel_lock.h │ │ │ ├── parallel_macros.h │ │ │ ├── parallel_queue.h │ │ │ ├── parallel_queue_suspendable.h │ │ │ ├── parallel_resource_pool.h │ │ │ ├── parallel_sequence.h │ │ │ ├── parallel_serializer.h │ │ │ ├── parallel_splitting.h │ │ │ ├── parallel_tags.h │ │ │ └── parallel_thread_pool.h │ │ │ ├── parse_lm.h │ │ │ ├── parse_lm │ │ │ ├── local_match_store.h │ │ │ ├── parse_blastn_tabular.h │ │ │ ├── parse_lastz_general.h │ │ │ └── parse_stellar_gff.h │ │ │ ├── pipe.h │ │ │ ├── pipe │ │ │ ├── pipe_base.h │ │ │ ├── pipe_caster.h │ │ │ ├── pipe_counter.h │ │ │ ├── pipe_echoer.h │ │ │ ├── pipe_edit_environment.h │ │ │ ├── pipe_filter.h │ │ │ ├── pipe_iterator.h │ │ │ ├── pipe_joiner.h │ │ │ ├── pipe_namer.h │ │ │ ├── pipe_sampler.h │ │ │ ├── pipe_shifter.h │ │ │ ├── pipe_source.h │ │ │ ├── pipe_tupler.h │ │ │ ├── pool_base.h │ │ │ ├── pool_mapper.h │ │ │ └── pool_sorter.h │ │ │ ├── platform.h │ │ │ ├── random.h │ │ │ ├── random │ │ │ ├── random_base.h │ │ │ ├── random_beta.h │ │ │ └── random_util.h │ │ │ ├── realign.h │ │ │ ├── realign │ │ │ ├── realign_base.h │ │ │ └── realign_helper_functions.h │ │ │ ├── reduced_aminoacid.h │ │ │ ├── reduced_aminoacid │ │ │ ├── reduced_aminoacid_base.h │ │ │ ├── reduced_aminoacid_base_late.h │ │ │ ├── reduced_aminoacid_buchfink11_base.h │ │ │ ├── reduced_aminoacid_buchfink11_tables.h │ │ │ ├── reduced_aminoacid_cannata10_base.h │ │ │ ├── reduced_aminoacid_cannata10_tables.h │ │ │ ├── reduced_aminoacid_cluster_red_base.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_20_to_n_b62.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_22_to_n_b62.h │ │ │ ├── reduced_aminoacid_cluster_red_tables_24_to_n_b62.h │ │ │ ├── reduced_aminoacid_li10_base.h │ │ │ ├── reduced_aminoacid_li10_tables.h │ │ │ ├── reduced_aminoacid_murphy10_base.h │ │ │ ├── reduced_aminoacid_murphy10_tables.h │ │ │ ├── reduced_aminoacid_murphy5_base.h │ │ │ ├── reduced_aminoacid_murphy5_tables.h │ │ │ ├── reduced_aminoacid_solis10_base.h │ │ │ └── reduced_aminoacid_solis10_tables.h │ │ │ ├── rna_io.h │ │ │ ├── rna_io │ │ │ ├── bpseq_read_write.h │ │ │ ├── connect_read_write.h │ │ │ ├── dot_bracket_read_write.h │ │ │ ├── ebpseq_read_write.h │ │ │ ├── rna_header.h │ │ │ ├── rna_io_context.h │ │ │ ├── rna_record.h │ │ │ ├── rna_struct_file.h │ │ │ ├── stockholm_read_write.h │ │ │ └── vienna_read_write.h │ │ │ ├── roi_io.h │ │ │ ├── roi_io │ │ │ ├── read_roi.h │ │ │ ├── roi_file.h │ │ │ ├── roi_io_context.h │ │ │ ├── roi_record.h │ │ │ └── write_roi.h │ │ │ ├── score.h │ │ │ ├── score │ │ │ ├── score_base.h │ │ │ ├── score_edit.h │ │ │ ├── score_matrix.h │ │ │ ├── score_matrix_data.h │ │ │ ├── score_matrix_dyn.h │ │ │ ├── score_matrix_io.h │ │ │ ├── score_simd_wrapper.h │ │ │ └── score_simple.h │ │ │ ├── seeds.h │ │ │ ├── seeds │ │ │ ├── banded_chain_alignment.h │ │ │ ├── banded_chain_alignment_impl.h │ │ │ ├── banded_chain_alignment_profile.h │ │ │ ├── banded_chain_alignment_scout.h │ │ │ ├── banded_chain_alignment_traceback.h │ │ │ ├── basic_iter_indirect.h │ │ │ ├── seeds_base.h │ │ │ ├── seeds_combination.h │ │ │ ├── seeds_extension.h │ │ │ ├── seeds_global_chaining.h │ │ │ ├── seeds_global_chaining_base.h │ │ │ ├── seeds_global_chaining_gusfield.h │ │ │ ├── seeds_seed_base.h │ │ │ ├── seeds_seed_chained.h │ │ │ ├── seeds_seed_diagonal.h │ │ │ ├── seeds_seed_set_base.h │ │ │ ├── seeds_seed_set_non_scored.h │ │ │ ├── seeds_seed_set_scored.h │ │ │ ├── seeds_seed_set_unordered.h │ │ │ └── seeds_seed_simple.h │ │ │ ├── seq_io.h │ │ │ ├── seq_io │ │ │ ├── bam_sam.h │ │ │ ├── fai_index.h │ │ │ ├── fasta_fastq.h │ │ │ ├── genomic_region.h │ │ │ ├── read_embl.h │ │ │ ├── read_genbank.h │ │ │ └── sequence_file.h │ │ │ ├── sequence.h │ │ │ ├── sequence │ │ │ ├── adapt_array_pointer.h │ │ │ ├── adapt_stl_container.h │ │ │ ├── container_view.h │ │ │ ├── container_view_zip.h │ │ │ ├── iter_concat_virtual.h │ │ │ ├── segment_base.h │ │ │ ├── segment_infix.h │ │ │ ├── segment_prefix.h │ │ │ ├── segment_suffix.h │ │ │ ├── segment_utils.h │ │ │ ├── sequence_concatenator.h │ │ │ ├── sequence_forwards.h │ │ │ ├── sequence_interface.h │ │ │ ├── sequence_lexical.h │ │ │ ├── sequence_shortcuts.h │ │ │ ├── string_alloc.h │ │ │ ├── string_array.h │ │ │ ├── string_base.h │ │ │ ├── string_block.h │ │ │ ├── string_cstyle.h │ │ │ ├── string_packed.h │ │ │ ├── string_packed_old.h │ │ │ ├── string_set_base.h │ │ │ ├── string_set_concat_direct.h │ │ │ ├── string_set_dependent_generous.h │ │ │ ├── string_set_dependent_tight.h │ │ │ ├── string_set_owner.h │ │ │ ├── string_set_segment.h │ │ │ └── string_set_view.h │ │ │ ├── sequence_journaled.h │ │ │ ├── sequence_journaled │ │ │ ├── journal_entries_sorted_array.h │ │ │ ├── journal_entry.h │ │ │ ├── sequence_journaled.h │ │ │ ├── sequence_journaled_iterator.h │ │ │ └── sequence_journaled_iterator_fast.h │ │ │ ├── simd.h │ │ │ ├── simd │ │ │ ├── simd_base.h │ │ │ ├── simd_base_seqan_impl.h │ │ │ ├── simd_base_seqan_impl_avx2.h │ │ │ ├── simd_base_seqan_impl_avx512.h │ │ │ ├── simd_base_seqan_impl_sse4.2.h │ │ │ ├── simd_base_seqan_interface.h │ │ │ └── simd_base_umesimd_impl.h │ │ │ ├── simple_intervals_io.h │ │ │ ├── simple_intervals_io │ │ │ ├── simple_intervals_file.h │ │ │ └── simple_intervals_io.h │ │ │ ├── statistics.h │ │ │ ├── statistics │ │ │ ├── statistics_base.h │ │ │ └── statistics_markov_model.h │ │ │ ├── store.h │ │ │ ├── store │ │ │ ├── store_align.h │ │ │ ├── store_align_intervals.h │ │ │ ├── store_all.h │ │ │ ├── store_annotation.h │ │ │ ├── store_base.h │ │ │ ├── store_contig.h │ │ │ ├── store_intervaltree.h │ │ │ ├── store_io.h │ │ │ ├── store_io_gff.h │ │ │ ├── store_io_sam.h │ │ │ ├── store_io_ucsc.h │ │ │ ├── store_library.h │ │ │ ├── store_matepair.h │ │ │ └── store_read.h │ │ │ ├── stream.h │ │ │ ├── stream │ │ │ ├── adapt_ios.h │ │ │ ├── buffered_stream.h │ │ │ ├── file_stream.h │ │ │ ├── formatted_file.h │ │ │ ├── guess_format.h │ │ │ ├── iostream_bgzf.h │ │ │ ├── iostream_bzip2.h │ │ │ ├── iostream_bzip2_impl.h │ │ │ ├── iostream_zip.h │ │ │ ├── iostream_zip_impl.h │ │ │ ├── iostream_zutil.h │ │ │ ├── iter_stream.h │ │ │ ├── lexical_cast.h │ │ │ ├── stream_base.h │ │ │ ├── stream_compressor.h │ │ │ ├── tokenization.h │ │ │ └── virtual_stream.h │ │ │ ├── system.h │ │ │ ├── system │ │ │ ├── file_async.h │ │ │ ├── file_directory.h │ │ │ ├── file_forwards.h │ │ │ ├── file_sync.h │ │ │ ├── system_base.h │ │ │ ├── system_event_win.h │ │ │ └── system_forwards.h │ │ │ ├── tabix_io.h │ │ │ ├── tabix_io │ │ │ └── tabix_index_tbi.h │ │ │ ├── translation.h │ │ │ ├── translation │ │ │ ├── translation.h │ │ │ └── translation_tables.h │ │ │ ├── ucsc_io.h │ │ │ ├── ucsc_io │ │ │ ├── ucsc_file.h │ │ │ ├── ucsc_io.h │ │ │ └── ucsc_record.h │ │ │ ├── vcf_io.h │ │ │ ├── vcf_io │ │ │ ├── read_vcf.h │ │ │ ├── vcf_file.h │ │ │ ├── vcf_header.h │ │ │ ├── vcf_header_record.h │ │ │ ├── vcf_io_context.h │ │ │ ├── vcf_record.h │ │ │ └── write_vcf.h │ │ │ └── version.h │ │ └── share │ │ ├── cmake │ │ └── seqan │ │ │ └── seqan-config.cmake │ │ ├── doc │ │ └── seqan │ │ │ ├── CHANGELOG.rst │ │ │ ├── LICENSE │ │ │ ├── README.rst │ │ │ └── html │ │ │ ├── class_AFScore.html │ │ │ ├── class_Accumulator.html │ │ │ ├── class_Align.html │ │ │ ├── class_AlignCols.html │ │ │ ├── class_AlignConfig.html │ │ │ ├── class_AlignQualityStoreElement.html │ │ │ ├── class_AlignTraceback.html │ │ │ ├── class_AlignedReadLayout.html │ │ │ ├── class_AlignedReadStoreElement.html │ │ │ ├── class_AlignmentStats.html │ │ │ ├── class_Allocator.html │ │ │ ├── class_AlphabetExpansion.html │ │ │ ├── class_AnnotationStoreElement.html │ │ │ ├── class_ArgParseArgument.html │ │ │ ├── class_ArgumentParser.html │ │ │ ├── class_AsyncRequest.html │ │ │ ├── class_BadAlloc.html │ │ │ ├── class_BadCast.html │ │ │ ├── class_BamAlignmentRecord.html │ │ │ ├── class_BamHeader.html │ │ │ ├── class_BamHeaderRecord.html │ │ │ ├── class_BamIOContext.html │ │ │ ├── class_BamIndex.html │ │ │ ├── class_BamTagsDict.html │ │ │ ├── class_BedRecord.html │ │ │ ├── class_BedRgb.html │ │ │ ├── class_BetaDistribution.html │ │ │ ├── class_BidirectionalIndex.html │ │ │ ├── class_BlastIOContext.html │ │ │ ├── class_BlastMatch.html │ │ │ ├── class_BlastMatchField.html │ │ │ ├── class_BlastProgramSelector.html │ │ │ ├── class_BlastRecord.html │ │ │ ├── class_BlastReport.html │ │ │ ├── class_BlastScoringScheme.html │ │ │ ├── class_BlastTabular.html │ │ │ ├── class_BlastTabularLL.html │ │ │ ├── class_BlastTabularSpecSelector.html │ │ │ ├── class_BufferedStream.html │ │ │ ├── class_Bundle2.html │ │ │ ├── class_Bundle3.html │ │ │ ├── class_Bundle5.html │ │ │ ├── class_CigarElement.html │ │ │ ├── class_CompressedSA.html │ │ │ ├── class_ConcatenatorManyToOne.html │ │ │ ├── class_ConcurrentQueue.html │ │ │ ├── class_ConsensusAlignerIllegalArgumentException.html │ │ │ ├── class_ConsensusAlignmentOptions.html │ │ │ ├── class_ConsensusScoreSequenceEntry.html │ │ │ ├── class_ContainerView.html │ │ │ ├── class_ContigFile.html │ │ │ ├── class_ContigStoreElement.html │ │ │ ├── class_CountingThreadLocalManager.html │ │ │ ├── class_CyclicShape.html │ │ │ ├── class_DPBandConfig.html │ │ │ ├── class_DefaultJstConfig.html │ │ │ ├── class_DefaultSeedConfig.html │ │ │ ├── class_DeltaMap.html │ │ │ ├── class_Deque.html │ │ │ ├── class_EdgeStump.html │ │ │ ├── class_EnumerableThreadLocal.html │ │ │ ├── class_Exception.html │ │ │ ├── class_ExecutionPolicy.html │ │ │ ├── class_ExternalConfig.html │ │ │ ├── class_ExternalConfigLarge.html │ │ │ ├── class_ExternalConfigSize.html │ │ │ ├── class_FMIndexConfig.html │ │ │ ├── class_FaiIndex.html │ │ │ ├── class_FastFMIndexConfig.html │ │ │ ├── class_File.html │ │ │ ├── class_FileMapping.html │ │ │ ├── class_Finder.html │ │ │ ├── class_FormattedFile.html │ │ │ ├── class_FormattedNumber.html │ │ │ ├── class_Fragment.html │ │ │ ├── class_FragmentStore.html │ │ │ ├── class_FunctorComplement.html │ │ │ ├── class_FunctorConvert.html │ │ │ ├── class_FunctorLowcase.html │ │ │ ├── class_FunctorUpcase.html │ │ │ ├── class_GapAnchor.html │ │ │ ├── class_Gaps.html │ │ │ ├── class_GapsIterator.html │ │ │ ├── class_GenomicRegion.html │ │ │ ├── class_GffRecord.html │ │ │ ├── class_Graph.html │ │ │ ├── class_Holder.html │ │ │ ├── class_IOError.html │ │ │ ├── class_IdManager.html │ │ │ ├── class_Index.html │ │ │ ├── class_InternalPointerPropertyMap.html │ │ │ ├── class_InternalPropertyMap.html │ │ │ ├── class_IntervalAndCargo.html │ │ │ ├── class_IntervalTree.html │ │ │ ├── class_IntervalTreeNode.html │ │ │ ├── class_Iter.html │ │ │ ├── class_JoinConfig.html │ │ │ ├── class_JournaledStringTree.html │ │ │ ├── class_LF.html │ │ │ ├── class_LevelsPrefixRDConfig.html │ │ │ ├── class_LevelsRDConfig.html │ │ │ ├── class_Lexical.html │ │ │ ├── class_LibraryStoreElement.html │ │ │ ├── class_LocalAlignmentEnumerator.html │ │ │ ├── class_LocalMatch.html │ │ │ ├── class_LocalMatchStore.html │ │ │ ├── class_LocalMatchStoreConfig.html │ │ │ ├── class_LogProb.html │ │ │ ├── class_Loop.html │ │ │ ├── class_LoopReverse.html │ │ │ ├── class_MMapConfig.html │ │ │ ├── class_Map.html │ │ │ ├── class_MarkovModel.html │ │ │ ├── class_MatePairStoreElement.html │ │ │ ├── class_Matrix.html │ │ │ ├── class_ModifiedAlphabet.html │ │ │ ├── class_ModifiedIterator.html │ │ │ ├── class_ModifiedString.html │ │ │ ├── class_MsaOptions.html │ │ │ ├── class_NameStoreCache.html │ │ │ ├── class_Pair.html │ │ │ ├── class_Pattern.html │ │ │ ├── class_PigeonholeParameters.html │ │ │ ├── class_Pipe.html │ │ │ ├── class_PointAndCargo.html │ │ │ ├── class_Pool.html │ │ │ ├── class_PriorityType.html │ │ │ ├── class_ProfileChar.html │ │ │ ├── class_Proxy.html │ │ │ ├── class_Range.html │ │ │ ├── class_RankDictionary.html │ │ │ ├── class_RankSupportBitString.html │ │ │ ├── class_ReadStoreElement.html │ │ │ ├── class_Repeat.html │ │ │ ├── class_RevTextFibre.html │ │ │ ├── class_RightArrayBinaryTree.html │ │ │ ├── class_RnaHeader.html │ │ │ ├── class_RnaIOContext.html │ │ │ ├── class_RnaRecord.html │ │ │ ├── class_RnaStructContents.html │ │ │ ├── class_RnaStructureGraph.html │ │ │ ├── class_RuntimeError.html │ │ │ ├── class_Score.html │ │ │ ├── class_Seed.html │ │ │ ├── class_SeedDiagonal.html │ │ │ ├── class_SeedSet.html │ │ │ ├── class_Segment.html │ │ │ ├── class_SentinelRankDictionary.html │ │ │ ├── class_SequenceOutputOptions.html │ │ │ ├── class_Shape.html │ │ │ ├── class_SimpleIntervalsIOContext.html │ │ │ ├── class_SimpleThreadLocalManager.html │ │ │ ├── class_SimpleType.html │ │ │ ├── class_SparseString.html │ │ │ ├── class_Splitter.html │ │ │ ├── class_StreamBuffer.html │ │ │ ├── class_String.html │ │ │ ├── class_StringEnumerator.html │ │ │ ├── class_StringSet.html │ │ │ ├── class_SwiftParameters.html │ │ │ ├── class_TabixIndex.html │ │ │ ├── class_Tag.html │ │ │ ├── class_TagList.html │ │ │ ├── class_TagSelector.html │ │ │ ├── class_ThreadPool.html │ │ │ ├── class_ToStdAllocator.html │ │ │ ├── class_ToolDoc.html │ │ │ ├── class_Triple.html │ │ │ ├── class_Tuple.html │ │ │ ├── class_UcscIOContext.html │ │ │ ├── class_UcscRecord.html │ │ │ ├── class_UnionFind.html │ │ │ ├── class_VcfHeader.html │ │ │ ├── class_VcfHeaderRecord.html │ │ │ ├── class_VcfIOContext.html │ │ │ ├── class_VcfRecord.html │ │ │ ├── class_VirtualStream.html │ │ │ ├── class_VolatilePtr.html │ │ │ ├── concept_AggregateConcept.html │ │ │ ├── concept_AlphabetConcept.html │ │ │ ├── concept_AlphabetWithGapsConcept.html │ │ │ ├── concept_AlphabetWithQualitiesConcept.html │ │ │ ├── concept_AlphabetWithUnknownValueConcept.html │ │ │ ├── concept_AssignableConcept.html │ │ │ ├── concept_BidirectionalIteratorConcept.html │ │ │ ├── concept_BidirectionalStreamConcept.html │ │ │ ├── concept_ComparableConcept.html │ │ │ ├── concept_ContainerConcept.html │ │ │ ├── concept_ConvertibleConcept.html │ │ │ ├── concept_CopyConstructibleConcept.html │ │ │ ├── concept_DefaultConstructibleConcept.html │ │ │ ├── concept_DestructibleConcept.html │ │ │ ├── concept_EqualityComparableConcept.html │ │ │ ├── concept_FiniteOrderedAlphabetConcept.html │ │ │ ├── concept_FormattedFileHeaderConcept.html │ │ │ ├── concept_FormattedFileRecordConcept.html │ │ │ ├── concept_ForwardContainerConcept.html │ │ │ ├── concept_ForwardIteratorConcept.html │ │ │ ├── concept_GraphOverAlphabetConcept.html │ │ │ ├── concept_HostedConcept.html │ │ │ ├── concept_InputIteratorConcept.html │ │ │ ├── concept_InputStreamConcept.html │ │ │ ├── concept_IntegerConcept.html │ │ │ ├── concept_IteratorAssociatedTypesConcept.html │ │ │ ├── concept_LessThanComparableConcept.html │ │ │ ├── concept_MoveConstructibleConcept.html │ │ │ ├── concept_MutableBidirectionalIteratorConcept.html │ │ │ ├── concept_MutableForwardIteratorConcept.html │ │ │ ├── concept_MutableRandomAccessIteratorConcept.html │ │ │ ├── concept_MutableRootedIteratorConcept.html │ │ │ ├── concept_MutableRootedRandomAccessIteratorConcept.html │ │ │ ├── concept_NumberConcept.html │ │ │ ├── concept_OrderedAlphabetConcept.html │ │ │ ├── concept_OutputIteratorConcept.html │ │ │ ├── concept_OutputStreamConcept.html │ │ │ ├── concept_PropertyMapConcept.html │ │ │ ├── concept_RandomAccessContainerConcept.html │ │ │ ├── concept_RandomAccessIteratorConcept.html │ │ │ ├── concept_ReversibleContainerConcept.html │ │ │ ├── concept_RootedIteratorConcept.html │ │ │ ├── concept_RootedRandomAccessIteratorConcept.html │ │ │ ├── concept_SegmentableConcept.html │ │ │ ├── concept_SignedIntegerConcept.html │ │ │ ├── concept_StreamConcept.html │ │ │ ├── concept_StringConcept.html │ │ │ ├── concept_StringIndexConcept.html │ │ │ ├── concept_StringTreeConcept.html │ │ │ ├── concept_StringTrieConcept.html │ │ │ ├── concept_TextConcept.html │ │ │ ├── concept_UnsignedIntegerConcept.html │ │ │ ├── css │ │ │ ├── common.less │ │ │ ├── common.less.css │ │ │ ├── custom.css │ │ │ ├── full_list.css │ │ │ ├── main.css │ │ │ ├── reset.css │ │ │ ├── rules.less │ │ │ └── style.css │ │ │ ├── demos │ │ │ ├── blast │ │ │ │ ├── blast_in_lowlevel.cpp │ │ │ │ └── blast_in_lowlevel.cpp.stdout_ │ │ │ ├── dox │ │ │ │ ├── align │ │ │ │ │ ├── align.cpp │ │ │ │ │ ├── align.cpp.stdout │ │ │ │ │ ├── compute_alignment_stats.cpp │ │ │ │ │ ├── compute_alignment_stats.cpp.stdout │ │ │ │ │ ├── gaps_example.cpp │ │ │ │ │ ├── gaps_example.cpp.stdout │ │ │ │ │ ├── global_alignment_banded.cpp │ │ │ │ │ ├── global_alignment_banded.cpp.stdout │ │ │ │ │ ├── global_alignment_unbanded.cpp │ │ │ │ │ ├── global_alignment_unbanded.cpp.stdout │ │ │ │ │ ├── integrate_align.cpp │ │ │ │ │ └── integrate_align.cpp.stdout │ │ │ │ ├── align_extend │ │ │ │ │ ├── extend_alignment.cpp │ │ │ │ │ └── extend_alignment.cpp.stdout │ │ │ │ ├── align_profile │ │ │ │ │ ├── profile_seq_frac_score.cpp │ │ │ │ │ └── profile_seq_score.cpp │ │ │ │ ├── align_split │ │ │ │ │ ├── split_alignment.cpp │ │ │ │ │ └── split_alignment.cpp.stdout │ │ │ │ ├── arg_parse │ │ │ │ │ └── argument_parser.cpp │ │ │ │ ├── bam_io │ │ │ │ │ ├── bam_tags_dict.cpp │ │ │ │ │ └── bam_tags_dict.cpp.stdout │ │ │ │ ├── basic │ │ │ │ │ ├── enable_if.cpp │ │ │ │ │ ├── metaprogramming_control.cpp │ │ │ │ │ ├── metaprogramming_logic.cpp │ │ │ │ │ ├── metaprogramming_math.cpp │ │ │ │ │ ├── metaprogramming_switch.cpp │ │ │ │ │ ├── simple_type_construction.cpp │ │ │ │ │ ├── zip_iterator.cpp │ │ │ │ │ └── zip_iterator.cpp.stdout │ │ │ │ ├── consensus │ │ │ │ │ ├── consensus_alignment.cpp │ │ │ │ │ └── consensus_alignment.cpp.stdout │ │ │ │ ├── find │ │ │ │ │ ├── finder_aho_corasick.cpp │ │ │ │ │ ├── finder_index.cpp │ │ │ │ │ ├── finder_index.cpp.stdout │ │ │ │ │ ├── finder_online.cpp │ │ │ │ │ └── finder_online.cpp.stdout │ │ │ │ ├── graph_algorithms │ │ │ │ │ ├── all_pairs_shortest_path.cpp │ │ │ │ │ ├── all_pairs_shortest_path.cpp.stdout │ │ │ │ │ ├── bellman_ford_algorithm.cpp │ │ │ │ │ ├── bellman_ford_algorithm.cpp.stdout │ │ │ │ │ ├── breadth_first_search.cpp │ │ │ │ │ ├── breadth_first_search.cpp.stdout │ │ │ │ │ ├── dag_shortest_path.cpp │ │ │ │ │ ├── dag_shortest_path.cpp.stdout │ │ │ │ │ ├── depth_first_search.cpp │ │ │ │ │ ├── depth_first_search.cpp.stdout │ │ │ │ │ ├── dijkstra.cpp │ │ │ │ │ ├── dijkstra.cpp.stdout │ │ │ │ │ ├── floyd_warshall_algorithm.cpp │ │ │ │ │ ├── floyd_warshall_algorithm.cpp.stdout │ │ │ │ │ ├── ford_fulkerson_algorithm.cpp │ │ │ │ │ ├── ford_fulkerson_algorithm.cpp.stdout │ │ │ │ │ ├── heaviest_increasing_subsequence.cpp │ │ │ │ │ ├── kruskals_algorithm.cpp │ │ │ │ │ ├── kruskals_algorithm.cpp.stdout │ │ │ │ │ ├── longest_common_subsequence.cpp │ │ │ │ │ ├── longest_increasing_subsequence.cpp │ │ │ │ │ ├── prims_algorithm.cpp │ │ │ │ │ ├── prims_algorithm.cpp.stdout │ │ │ │ │ ├── strongly_connected_components.cpp │ │ │ │ │ ├── strongly_connected_components.cpp.stdout │ │ │ │ │ ├── topological_sort.cpp │ │ │ │ │ ├── topological_sort.cpp.stdout │ │ │ │ │ ├── transitive_closure.cpp │ │ │ │ │ └── transitive_closure.cpp.stdout │ │ │ │ ├── graph_align │ │ │ │ │ └── graph_align.cpp │ │ │ │ ├── graph_types │ │ │ │ │ ├── graph_algo_dijkstra.cpp │ │ │ │ │ └── graph_algo_dijkstra.cpp.stdout │ │ │ │ ├── index │ │ │ │ │ ├── begin_atEnd_representative.cpp │ │ │ │ │ ├── begin_atEnd_representative.cpp.stdout │ │ │ │ │ ├── begin_atEnd_representative_bottomUp.cpp │ │ │ │ │ ├── begin_range_goDown_representative_repLength.cpp │ │ │ │ │ ├── counting.cpp │ │ │ │ │ ├── counting.cpp.stdout │ │ │ │ │ ├── find_repeats.cpp │ │ │ │ │ ├── finder.cpp │ │ │ │ │ ├── finder.cpp.stdout │ │ │ │ │ ├── getOccurrences_getFrequency_range_getFibre.cpp │ │ │ │ │ ├── getOccurrences_getFrequency_range_getFibre.cpp.stdout │ │ │ │ │ ├── iterator.cpp │ │ │ │ │ ├── iterator.cpp.stdout │ │ │ │ │ ├── iterator_short.cpp │ │ │ │ │ ├── iterator_short.cpp.stdout │ │ │ │ │ ├── length_countSequences.cpp │ │ │ │ │ ├── length_countSequences.cpp.stdout │ │ │ │ │ ├── maxrepeats.cpp │ │ │ │ │ ├── mummy.cpp │ │ │ │ │ ├── mums.cpp │ │ │ │ │ ├── node_predicate.cpp │ │ │ │ │ ├── open_save.cpp │ │ │ │ │ ├── open_save.cpp.stdout │ │ │ │ │ ├── shape_hash_init.cpp │ │ │ │ │ ├── sufarray.cpp │ │ │ │ │ ├── supermaxrepeats.cpp │ │ │ │ │ ├── textAt_indexText_saAt_indexRequire.cpp │ │ │ │ │ └── textAt_indexText_saAt_indexRequire.cpp.stdout │ │ │ │ ├── misc │ │ │ │ │ ├── enumerate_strings.cpp │ │ │ │ │ ├── enumerate_strings.cpp.stdout │ │ │ │ │ ├── get_terminal_size.cpp │ │ │ │ │ ├── interval_tree_example.cpp │ │ │ │ │ ├── name_store_cache.cpp │ │ │ │ │ └── name_store_cache.cpp.stdout │ │ │ │ ├── modifier │ │ │ │ │ ├── cyclic_shape.cpp │ │ │ │ │ ├── cyclic_shape.cpp.stdout │ │ │ │ │ ├── cyclic_shape_snippets.cpp │ │ │ │ │ ├── modified_string.cpp │ │ │ │ │ ├── modified_string.cpp.stdout │ │ │ │ │ ├── modified_string_mod_view.cpp │ │ │ │ │ ├── modified_string_mod_view.cpp.stdout │ │ │ │ │ ├── modified_string_nested.cpp │ │ │ │ │ └── modified_string_nested.cpp.stdout │ │ │ │ ├── parallel │ │ │ │ │ ├── queue_example.cpp │ │ │ │ │ ├── queue_example.cpp.stdout │ │ │ │ │ ├── splitter_example.cpp │ │ │ │ │ └── splitter_example.cpp.stdout │ │ │ │ ├── pipe │ │ │ │ │ └── pool_sorter.cpp │ │ │ │ ├── score │ │ │ │ │ ├── score.cpp │ │ │ │ │ └── score.cpp.stdout │ │ │ │ ├── seeds │ │ │ │ │ ├── seeds_add_seed.cpp │ │ │ │ │ ├── seeds_chaining.cpp │ │ │ │ │ ├── seeds_chaining.cpp.stdout │ │ │ │ │ ├── seeds_extension.cpp │ │ │ │ │ └── seeds_extension.cpp.stdout │ │ │ │ ├── seq_io │ │ │ │ │ ├── fai_index_example.cpp │ │ │ │ │ └── fai_index_example.cpp.stdout │ │ │ │ ├── sequence │ │ │ │ │ ├── container_view_zip.cpp │ │ │ │ │ ├── container_view_zip.cpp.stdout │ │ │ │ │ ├── segment.cpp │ │ │ │ │ ├── string.cpp │ │ │ │ │ ├── string2.cpp │ │ │ │ │ ├── string2.cpp.stdout │ │ │ │ │ ├── stringset.cpp │ │ │ │ │ └── stringset.cpp.stdout │ │ │ │ ├── statistics │ │ │ │ │ ├── build_markov_model.cpp │ │ │ │ │ └── load_markov_model.cpp │ │ │ │ ├── store │ │ │ │ │ └── store_example.cpp │ │ │ │ └── stream │ │ │ │ │ ├── lexical_cast.cpp │ │ │ │ │ └── lexical_cast.cpp.stdout │ │ │ └── tutorial │ │ │ │ └── sam_and_bam_io │ │ │ │ ├── example.sam │ │ │ │ └── solution1.cpp │ │ │ ├── enum_AminoAcidScoreMatrixID.html │ │ │ ├── enum_ArgParseArgument_58_58ArgumentType.html │ │ │ ├── enum_ArgumentParser_58_58ParseResult.html │ │ │ ├── enum_BamFlags.html │ │ │ ├── enum_BamHeaderRecordType.html │ │ │ ├── enum_BamSortOrder.html │ │ │ ├── enum_BlastMatchField_58_58Enum.html │ │ │ ├── enum_BlastProgram.html │ │ │ ├── enum_BlastTabularSpec.html │ │ │ ├── enum_DeltaType.html │ │ │ ├── enum_ExtensionDirection.html │ │ │ ├── enum_FileMappingAdvise.html │ │ │ ├── enum_FileMappingMode.html │ │ │ ├── enum_FileOpenMode.html │ │ │ ├── enum_FragmentStore_58_58PredefinedAnnotationTypes.html │ │ │ ├── enum_GeneticCodeSpec.html │ │ │ ├── enum_TranslationFrames.html │ │ │ ├── global_function_TView.html │ │ │ ├── global_function_addToProfile.html │ │ │ ├── global_function_alignmentEvaluation.html │ │ │ ├── global_function_alignmentFreeComparison.html │ │ │ ├── global_function_allPairsShortestPath.html │ │ │ ├── global_function_arrayClearSpace.html │ │ │ ├── global_function_arrayConstruct.html │ │ │ ├── global_function_arrayConstructCopy.html │ │ │ ├── global_function_arrayConstructMove.html │ │ │ ├── global_function_arrayCopy.html │ │ │ ├── global_function_arrayCopyBackward.html │ │ │ ├── global_function_arrayCopyForward.html │ │ │ ├── global_function_arrayDestruct.html │ │ │ ├── global_function_arrayFill.html │ │ │ ├── global_function_arrayMove.html │ │ │ ├── global_function_arrayMoveBackward.html │ │ │ ├── global_function_arrayMoveForward.html │ │ │ ├── global_function_assignQualities.html │ │ │ ├── global_function_assignTagsBamToSam.html │ │ │ ├── global_function_assignTagsSamToBam.html │ │ │ ├── global_function_atomicMax.html │ │ │ ├── global_function_atomicMin.html │ │ │ ├── global_function_bandedChainAlignment.html │ │ │ ├── global_function_bellmanFordAlgorithm.html │ │ │ ├── global_function_bitScanForward.html │ │ │ ├── global_function_bitScanReverse.html │ │ │ ├── global_function_breadthFirstSearch.html │ │ │ ├── global_function_buildAlignmentGraph.html │ │ │ ├── global_function_bundle2.html │ │ │ ├── global_function_bundle3.html │ │ │ ├── global_function_bundle5.html │ │ │ ├── global_function_calcBetaDistParam.html │ │ │ ├── global_function_calcLogNormalDistParam.html │ │ │ ├── global_function_calculateCovariance.html │ │ │ ├── global_function_calculateOverlapIndicator.html │ │ │ ├── global_function_calculatePeriodicity.html │ │ │ ├── global_function_calculateProbability.html │ │ │ ├── global_function_calculateVariance.html │ │ │ ├── global_function_chainSeedsGlobally.html │ │ │ ├── global_function_clearAllBits.html │ │ │ ├── global_function_clearBit.html │ │ │ ├── global_function_complement.html │ │ │ ├── global_function_computeAlignmentStats.html │ │ │ ├── global_function_computeSplitters.html │ │ │ ├── global_function_connectedComponents.html │ │ │ ├── global_function_consensusAlignment.html │ │ │ ├── global_function_convert.html │ │ │ ├── global_function_convertImpl.html │ │ │ ├── global_function_convertQuality.html │ │ │ ├── global_function_countKmers.html │ │ │ ├── global_function_cpuTime.html │ │ │ ├── global_function_createBWTable.html │ │ │ ├── global_function_createInvSuffixArray.html │ │ │ ├── global_function_createLcpTable.html │ │ │ ├── global_function_createSuffixArray.html │ │ │ ├── global_function_cutNs.html │ │ │ ├── global_function_dagShortestPath.html │ │ │ ├── global_function_defaultRng.html │ │ │ ├── global_function_depthFirstSearch.html │ │ │ ├── global_function_dijkstra.html │ │ │ ├── global_function_endsWith.html │ │ │ ├── global_function_expectation.html │ │ │ ├── global_function_extendAlignment.html │ │ │ ├── global_function_findRepeats.html │ │ │ ├── global_function_floydWarshallAlgorithm.html │ │ │ ├── global_function_fordFulkersonAlgorithm.html │ │ │ ├── global_function_getAbsolutePath.html │ │ │ ├── global_function_getBamTypeChar.html │ │ │ ├── global_function_getBamTypeSize.html │ │ │ ├── global_function_getTerminalSize.html │ │ │ ├── global_function_globalAlignment.html │ │ │ ├── global_function_globalAlignmentScore.html │ │ │ ├── global_function_globalMsaAlignment.html │ │ │ ├── global_function_guessFormatFromFilename.html │ │ │ ├── global_function_heaviestIncreasingSubsequence.html │ │ │ ├── global_function_ignoreUnusedVariableWarning.html │ │ │ ├── global_function_integrateAlign.html │ │ │ ├── global_function_isAnsiColorTerminal.html │ │ │ ├── global_function_isBitSet.html │ │ │ ├── global_function_isTerminal.html │ │ │ ├── global_function_kruskalsAlgorithm.html │ │ │ ├── global_function_lexicalCast.html │ │ │ ├── global_function_lexicalCastWithException.html │ │ │ ├── global_function_localAlignment.html │ │ │ ├── global_function_localAlignmentScore.html │ │ │ ├── global_function_log2.html │ │ │ ├── global_function_longestCommonSubsequence.html │ │ │ ├── global_function_longestIncreasingSubsequence.html │ │ │ ├── global_function_lowerBoundAlignedReads.html │ │ │ ├── global_function_makeZipIterator.html │ │ │ ├── global_function_makeZipView.html │ │ │ ├── global_function_matchRefinement.html │ │ │ ├── global_function_memset.html │ │ │ ├── global_function_njTree.html │ │ │ ├── global_function_orderOccurrences.html │ │ │ ├── global_function_partialSum.html │ │ │ ├── global_function_popCount.html │ │ │ ├── global_function_primsAlgorithm.html │ │ │ ├── global_function_printDebugLevel.html │ │ │ ├── global_function_progressiveAlignment.html │ │ │ ├── global_function_reAlign.html │ │ │ ├── global_function_reAlignment.html │ │ │ ├── global_function_readEmblHeader.html │ │ │ ├── global_function_reverse.html │ │ │ ├── global_function_reverseComplement.html │ │ │ ├── global_function_setBit.html │ │ │ ├── global_function_setBitTo.html │ │ │ ├── global_function_shareResources.html │ │ │ ├── global_function_shuffle.html │ │ │ ├── global_function_sortAlignedReads.html │ │ │ ├── global_function_splitAlignment.html │ │ │ ├── global_function_splitGenBankHeader.html │ │ │ ├── global_function_startsWith.html │ │ │ ├── global_function_stringToStringSet.html │ │ │ ├── global_function_stronglyConnectedComponents.html │ │ │ ├── global_function_sum.html │ │ │ ├── global_function_sumOfPairsScore.html │ │ │ ├── global_function_sysTime.html │ │ │ ├── global_function_testAllOnes.html │ │ │ ├── global_function_testAllZeros.html │ │ │ ├── global_function_toLower.html │ │ │ ├── global_function_toUpper.html │ │ │ ├── global_function_topologicalSort.html │ │ │ ├── global_function_transitiveClosure.html │ │ │ ├── global_function_translate.html │ │ │ ├── global_function_tripletLibraryExtension.html │ │ │ ├── global_function_upgmaTree.html │ │ │ ├── global_function_upperBoundAlignedReads.html │ │ │ ├── global_function_valueConstruct.html │ │ │ ├── global_function_valueDestruct.html │ │ │ ├── global_function_variance.html │ │ │ ├── global_function_weaklyConnectedComponents.html │ │ │ ├── global_function_zscore.html │ │ │ ├── global_metafunction_AllowsFastRandomAccess.html │ │ │ ├── global_metafunction_BasicStream.html │ │ │ ├── global_metafunction_BytesPerValue.html │ │ │ ├── global_metafunction_Cargo.html │ │ │ ├── global_metafunction_Chunk.html │ │ │ ├── global_metafunction_Comparator.html │ │ │ ├── global_metafunction_CompareType.html │ │ │ ├── global_metafunction_CompareTypeImpl.html │ │ │ ├── global_metafunction_Convert.html │ │ │ ├── global_metafunction_DeepestSpec.html │ │ │ ├── global_metafunction_DefaultFindBeginPatternSpec.html │ │ │ ├── global_metafunction_DefaultFinder.html │ │ │ ├── global_metafunction_DefaultOverflowExplicit.html │ │ │ ├── global_metafunction_DefaultOverflowImplicit.html │ │ │ ├── global_metafunction_DefaultPattern.html │ │ │ ├── global_metafunction_DefaultPrefixOrder.html │ │ │ ├── global_metafunction_Device.html │ │ │ ├── global_metafunction_Difference.html │ │ │ ├── global_metafunction_Fibre.html │ │ │ ├── global_metafunction_FileExtensions.html │ │ │ ├── global_metafunction_Find.html │ │ │ ├── global_metafunction_GappedValueType.html │ │ │ ├── global_metafunction_GetDefaultRng.html │ │ │ ├── global_metafunction_GetValue.html │ │ │ ├── global_metafunction_HasMoveConstructor.html │ │ │ ├── global_metafunction_Id.html │ │ │ ├── global_metafunction_IntegralForValue.html │ │ │ ├── global_metafunction_IosOpenMode.html │ │ │ ├── global_metafunction_Is.html │ │ │ ├── global_metafunction_IsCharType.html │ │ │ ├── global_metafunction_IsContiguous.html │ │ │ ├── global_metafunction_IsDevice.html │ │ │ ├── global_metafunction_IsInteger.html │ │ │ ├── global_metafunction_IsIntegral.html │ │ │ ├── global_metafunction_IsLightWeight.html │ │ │ ├── global_metafunction_IsSameType.html │ │ │ ├── global_metafunction_IsSequence.html │ │ │ ├── global_metafunction_IsSimple.html │ │ │ ├── global_metafunction_IsView.html │ │ │ ├── global_metafunction_Key.html │ │ │ ├── global_metafunction_LENGTH.html │ │ │ ├── global_metafunction_MagicHeader.html │ │ │ ├── global_metafunction_MakePacked.html │ │ │ ├── global_metafunction_MakeSigned.html │ │ │ ├── global_metafunction_MakeUnsigned.html │ │ │ ├── global_metafunction_Member.html │ │ │ ├── global_metafunction_Position.html │ │ │ ├── global_metafunction_Reference.html │ │ │ ├── global_metafunction_RemoveConst.html │ │ │ ├── global_metafunction_RemovePointer.html │ │ │ ├── global_metafunction_RemoveReference.html │ │ │ ├── global_metafunction_RemoveView.html │ │ │ ├── global_metafunction_SAValue.html │ │ │ ├── global_metafunction_Size.html │ │ │ ├── global_metafunction_Spec.html │ │ │ ├── global_metafunction_Value.html │ │ │ ├── global_metafunction_VertexDescriptor.html │ │ │ ├── global_metafunction_View.html │ │ │ ├── global_metafunction_WEIGHT.html │ │ │ ├── global_typedef_Blosum30.html │ │ │ ├── global_typedef_Blosum45.html │ │ │ ├── global_typedef_Blosum62.html │ │ │ ├── global_typedef_Blosum80.html │ │ │ ├── global_typedef_CharIterator.html │ │ │ ├── global_typedef_CharString.html │ │ │ ├── global_typedef_DPBand.html │ │ │ ├── global_typedef_Dna5Iterator.html │ │ │ ├── global_typedef_Dna5QString.html │ │ │ ├── global_typedef_Dna5String.html │ │ │ ├── global_typedef_Dna5StringComplement.html │ │ │ ├── global_typedef_Dna5StringReverse.html │ │ │ ├── global_typedef_Dna5StringReverseComplement.html │ │ │ ├── global_typedef_DnaIterator.html │ │ │ ├── global_typedef_DnaQString.html │ │ │ ├── global_typedef_DnaString.html │ │ │ ├── global_typedef_DnaStringComplement.html │ │ │ ├── global_typedef_DnaStringReverse.html │ │ │ ├── global_typedef_DnaStringReverseComplement.html │ │ │ ├── global_typedef_EditDistanceScoreTypedef.html │ │ │ ├── global_typedef_IupacIterator.html │ │ │ ├── global_typedef_IupacString.html │ │ │ ├── global_typedef_MyersUkkonen.html │ │ │ ├── global_typedef_MyersUkkonenBanded.html │ │ │ ├── global_typedef_MyersUkkonenGlobal.html │ │ │ ├── global_typedef_MyersUkkonenGlobalBanded.html │ │ │ ├── global_typedef_Pam120.html │ │ │ ├── global_typedef_Pam200.html │ │ │ ├── global_typedef_Pam250.html │ │ │ ├── global_typedef_Pam40.html │ │ │ ├── global_typedef_Peptide.html │ │ │ ├── global_typedef_PeptideIterator.html │ │ │ ├── global_typedef_Rna5Iterator.html │ │ │ ├── global_typedef_Rna5String.html │ │ │ ├── global_typedef_Rna5StringComplement.html │ │ │ ├── global_typedef_Rna5StringReverse.html │ │ │ ├── global_typedef_Rna5StringReverseComplement.html │ │ │ ├── global_typedef_RnaAdjacencyIterator.html │ │ │ ├── global_typedef_RnaIterator.html │ │ │ ├── global_typedef_RnaString.html │ │ │ ├── global_typedef_RnaStringComplement.html │ │ │ ├── global_typedef_RnaStringReverse.html │ │ │ ├── global_typedef_RnaStringReverseComplement.html │ │ │ ├── global_typedef_SelectableAminoAcidMatrix.html │ │ │ ├── global_typedef_Sequential.html │ │ │ ├── global_typedef_SimpleScoreTypedef.html │ │ │ ├── global_typedef_TSizeRna5String.html │ │ │ ├── global_typedef_TraceBack.html │ │ │ ├── global_typedef_UnicodeString.html │ │ │ ├── global_typedef_Vtml200.html │ │ │ ├── group_AggregateTags.html │ │ │ ├── group_AlignmentAlgorithmTags.html │ │ │ ├── group_AlignmentGraphCombinationTags.html │ │ │ ├── group_AlignmentGraphFormatTags.html │ │ │ ├── group_AllocatorUsageTags.html │ │ │ ├── group_ApproximateFinderSearchTypeTags.html │ │ │ ├── group_AssertMacros.html │ │ │ ├── group_AtomicPrimitives.html │ │ │ ├── group_BamIOContextMemberTag.html │ │ │ ├── group_BottomUp.html │ │ │ ├── group_CompressedSAFibres.html │ │ │ ├── group_ConceptChecking.html │ │ │ ├── group_ContainerIteratorTags.html │ │ │ ├── group_DPBandSwitch.html │ │ │ ├── group_DeltaTypeTags.html │ │ │ ├── group_DfiIndexFibres.html │ │ │ ├── group_DfsOrder.html │ │ │ ├── group_DirectionTags.html │ │ │ ├── group_DistanceCalculationTags.html │ │ │ ├── group_EnableIfFunctionality.html │ │ │ ├── group_ExceptionHandling.html │ │ │ ├── group_FMIndexCompressionSpec.html │ │ │ ├── group_FMIndexFibres.html │ │ │ ├── group_FMIndexRankDictionarySpec.html │ │ │ ├── group_FileCompressionTags.html │ │ │ ├── group_FileFormats.html │ │ │ ├── group_GapDirectionTags.html │ │ │ ├── group_GapsSpecTag.html │ │ │ ├── group_GlobalChainingTags.html │ │ │ ├── group_GraphIteratorTags.html │ │ │ ├── group_HmmAlgorithms.html │ │ │ ├── group_IndexEsaFibres.html │ │ │ ├── group_IndexFindAlgorithm.html │ │ │ ├── group_IntervalTreeNodeTypeTags.html │ │ │ ├── group_JoinStrategiesTags.html │ │ │ ├── group_LFTableFibres.html │ │ │ ├── group_LocalChainingTags.html │ │ │ ├── group_LogicMetaprogramming.html │ │ │ ├── group_LogicalValuesTags.html │ │ │ ├── group_MetafunctionSwitch.html │ │ │ ├── group_MetaprogrammingMath.html │ │ │ ├── group_MultipleSequenceAlignmentTags.html │ │ │ ├── group_OpenAdressingTags.html │ │ │ ├── group_OverflowStrategyTags.html │ │ │ ├── group_PairwiseLocalAlignmentAlgorithms.html │ │ │ ├── group_ParallelismTags.html │ │ │ ├── group_PizzaChiliIndexFibres.html │ │ │ ├── group_PizzaChiliIndexTags.html │ │ │ ├── group_PositionCalculation.html │ │ │ ├── group_PrefixOrderTags.html │ │ │ ├── group_QGramIndexFibres.html │ │ │ ├── group_RankDictionaryFibres.html │ │ │ ├── group_RankSupportBitStringFibres.html │ │ │ ├── group_RightArrayBinaryTreeFibres.html │ │ │ ├── group_SeedExtensionTags.html │ │ │ ├── group_SegmentMatchGenerationTags.html │ │ │ ├── group_SentinelRankDictionaryFibres.html │ │ │ ├── group_SortAlignedReadTags.html │ │ │ ├── group_SparseStringFibres.html │ │ │ ├── group_StandardIntegers.html │ │ │ ├── group_StreamFormats.html │ │ │ ├── group_TestSystemMacros.html │ │ │ ├── group_TopDown.html │ │ │ ├── group_UpgmaConfiguratorTags.html │ │ │ ├── group_WOTDIndexFibres.html │ │ │ ├── group_WaveletTreeFibres.html │ │ │ ├── img │ │ │ ├── icon_class.png │ │ │ ├── icon_concept.png │ │ │ ├── icon_enum.png │ │ │ ├── icon_function.png │ │ │ ├── icon_group.png │ │ │ ├── icon_macro.png │ │ │ ├── icon_metafunction.png │ │ │ ├── icon_page.png │ │ │ ├── icon_tag.png │ │ │ ├── icon_typedef.png │ │ │ ├── icon_variable.png │ │ │ ├── list-small.png │ │ │ ├── list.pdf │ │ │ ├── list.png │ │ │ ├── seqan_logo.highres.png │ │ │ ├── seqan_logo.png │ │ │ ├── seqan_strands.svg │ │ │ └── strands.png │ │ │ ├── include │ │ │ └── seqan │ │ │ │ └── index │ │ │ │ └── shape_predefined.h │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── app.js │ │ │ ├── autocomplete.js │ │ │ ├── common.js │ │ │ ├── full_list.js │ │ │ ├── jquery.js │ │ │ ├── jquery.smooth-scroll.js │ │ │ ├── lang_entities.js │ │ │ ├── less-1.4.1.js │ │ │ ├── link.data.js │ │ │ ├── module_tree.js │ │ │ ├── rubydoc_custom.js │ │ │ ├── search.data.js │ │ │ ├── search.data.module.js │ │ │ ├── search.engine.js │ │ │ └── version.js │ │ │ ├── lib │ │ │ ├── 3L │ │ │ │ ├── 3L.less │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENCES.md │ │ │ │ └── assets │ │ │ │ │ ├── animations │ │ │ │ │ ├── animation1.less │ │ │ │ │ ├── animation2.less │ │ │ │ │ ├── animation3.less │ │ │ │ │ ├── animation4.less │ │ │ │ │ └── animation5.less │ │ │ │ │ └── less.js │ │ │ ├── README.md │ │ │ ├── bootstrap-multiselect │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-3.0.0.css │ │ │ │ │ ├── bootstrap-multiselect.css │ │ │ │ │ └── prettify.css │ │ │ │ ├── custom.html │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-3.0.0.js │ │ │ │ │ ├── bootstrap-multiselect.js │ │ │ │ │ ├── jquery-2.0.3.js │ │ │ │ │ └── knockout-2.3.0.js │ │ │ │ ├── knockout-examples.html │ │ │ │ ├── less │ │ │ │ │ └── bootstrap-multiselect.less │ │ │ │ └── tests.html │ │ │ ├── bootstrap-treeview │ │ │ │ ├── css │ │ │ │ │ └── bootstrap-treeview.css │ │ │ │ └── js │ │ │ │ │ └── bootstrap-treeview.js │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ └── bootstrap.css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ └── glyphicons-halflings-regular.woff │ │ │ │ └── js │ │ │ │ │ └── bootstrap.js │ │ │ ├── bower.json │ │ │ ├── clipboard │ │ │ │ ├── clipboard.js │ │ │ │ └── license.txt │ │ │ ├── font-awesome │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ └── fontawesome-webfont.woff │ │ │ │ ├── less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── spinning.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ └── scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _spinning.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── jquery-bbq │ │ │ │ ├── LICENSE-GPL │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.markdown │ │ │ │ ├── jquery.ba-bbq.js │ │ │ │ ├── shared │ │ │ │ │ ├── SyntaxHighlighter │ │ │ │ │ │ ├── LGPLv3.txt │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ ├── shBrushAS3.js │ │ │ │ │ │ │ ├── shBrushBash.js │ │ │ │ │ │ │ ├── shBrushCSharp.js │ │ │ │ │ │ │ ├── shBrushCpp.js │ │ │ │ │ │ │ ├── shBrushCss.js │ │ │ │ │ │ │ ├── shBrushDelphi.js │ │ │ │ │ │ │ ├── shBrushDiff.js │ │ │ │ │ │ │ ├── shBrushGroovy.js │ │ │ │ │ │ │ ├── shBrushJScript.js │ │ │ │ │ │ │ ├── shBrushJava.js │ │ │ │ │ │ │ ├── shBrushJavaFX.js │ │ │ │ │ │ │ ├── shBrushPerl.js │ │ │ │ │ │ │ ├── shBrushPhp.js │ │ │ │ │ │ │ ├── shBrushPlain.js │ │ │ │ │ │ │ ├── shBrushPowerShell.js │ │ │ │ │ │ │ ├── shBrushPython.js │ │ │ │ │ │ │ ├── shBrushRuby.js │ │ │ │ │ │ │ ├── shBrushScala.js │ │ │ │ │ │ │ ├── shBrushSql.js │ │ │ │ │ │ │ ├── shBrushVb.js │ │ │ │ │ │ │ ├── shBrushXml.js │ │ │ │ │ │ │ ├── shCore.js │ │ │ │ │ │ │ └── shLegacy.js │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── shCore.js │ │ │ │ │ │ │ └── shLegacy.js │ │ │ │ │ │ ├── styles │ │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ │ ├── magnifier.png │ │ │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ │ │ ├── printer.png │ │ │ │ │ │ │ ├── shCore.css │ │ │ │ │ │ │ ├── shThemeDefault.css │ │ │ │ │ │ │ ├── shThemeDjango.css │ │ │ │ │ │ │ ├── shThemeEmacs.css │ │ │ │ │ │ │ ├── shThemeFadeToGrey.css │ │ │ │ │ │ │ ├── shThemeMidnight.css │ │ │ │ │ │ │ ├── shThemeRDark.css │ │ │ │ │ │ │ └── wrapping.png │ │ │ │ │ │ └── test.html │ │ │ │ │ ├── ba-debug.js │ │ │ │ │ ├── jquery-1.3.2.js │ │ │ │ │ ├── jquery-1.4.1.js │ │ │ │ │ ├── jquery-1.4.2.js │ │ │ │ │ ├── jquery-ui-1.7.2 │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ └── benalman │ │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── cowboy_hat.png │ │ │ │ │ │ │ │ ├── ui-bg_diagonals-medium_18_b81900_40x40.png │ │ │ │ │ │ │ │ ├── ui-bg_diagonals-medium_20_FF7F00_40x40.png │ │ │ │ │ │ │ │ ├── ui-bg_diagonals-small_35_FF7F00_40x40.png │ │ │ │ │ │ │ │ ├── ui-bg_flat_10_000000_40x100.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_FDEBDC_1x100.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_FFD6AF_1x100.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_100_dddddd_1x100.png │ │ │ │ │ │ │ │ ├── ui-bg_highlight-soft_75_C4884F_1x100.png │ │ │ │ │ │ │ │ ├── ui-bg_inset-soft_100_dddddd_1x100.png │ │ │ │ │ │ │ │ ├── ui-icons_222222_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_228ef1_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_333333_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_913D00_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_FF7F00_256x240.png │ │ │ │ │ │ │ │ ├── ui-icons_ffd27a_256x240.png │ │ │ │ │ │ │ │ └── ui-icons_ffffff_256x240.png │ │ │ │ │ │ │ │ └── jquery-ui-1.7.2.css │ │ │ │ │ │ └── js │ │ │ │ │ │ │ └── jquery-ui-1.7.2.js │ │ │ │ │ ├── json2.js │ │ │ │ │ ├── json_echo.php │ │ │ │ │ └── qunit.js │ │ │ │ └── unit │ │ │ │ │ ├── ie7-compat.html │ │ │ │ │ ├── index.html │ │ │ │ │ ├── jquery-1.3.2.html │ │ │ │ │ ├── jquery-1.4.1.html │ │ │ │ │ ├── qunit.css │ │ │ │ │ └── unit.js │ │ │ └── styles.less │ │ │ ├── list.html │ │ │ ├── macro_COMPILER_95CLANG.html │ │ │ ├── macro_COMPILER_95GCC.html │ │ │ ├── macro_COMPILER_95LINTEL.html │ │ │ ├── macro_COMPILER_95MSVC.html │ │ │ ├── macro_COMPILER_95WINTEL.html │ │ │ ├── macro_PLATFORM_95GCC.html │ │ │ ├── macro_SEQAN_95ENABLE_95PARALLELISM.html │ │ │ ├── macro_SEQAN_95HAS_95BZIP2.html │ │ │ ├── macro_SEQAN_95HAS_95ZLIB.html │ │ │ ├── macro_SEQAN_95IS_9532_95BIT.html │ │ │ ├── macro_SEQAN_95IS_9564_95BIT.html │ │ │ ├── macro_SEQAN_95OMP_95PRAGMA.html │ │ │ ├── macro_SEQAN_95PATH_95TO_95ROOT.html │ │ │ ├── macro_SEQAN_95TEMP_95FILENAME.html │ │ │ ├── macro_STDLIB_95GNU.html │ │ │ ├── macro_STDLIB_95LLVM.html │ │ │ ├── macro_STDLIB_95VS.html │ │ │ ├── page_DemoConstraintIterator.html │ │ │ ├── page_DemoIndexCountChildren.html │ │ │ ├── page_DemoMaximalRepeats.html │ │ │ ├── page_DemoMaximalUniqueMatches.html │ │ │ ├── page_DemoMummy.html │ │ │ ├── page_DemoSuffixArray.html │ │ │ ├── page_DemoSupermaximalRepeats.html │ │ │ ├── page_LanguageEntities.html │ │ │ ├── page_mainpage.html │ │ │ ├── specialization_AbndmAlgoPattern.html │ │ │ ├── specialization_AdaptorIterator.html │ │ │ ├── specialization_AdjacencyIterator.html │ │ │ ├── specialization_AhoCorasickPattern.html │ │ │ ├── specialization_AlignColIterator.html │ │ │ ├── specialization_AlignmentGraph.html │ │ │ ├── specialization_AllocString.html │ │ │ ├── specialization_AminoAcid.html │ │ │ ├── specialization_AnchorGaps.html │ │ │ ├── specialization_AnnotationTreeIterator.html │ │ │ ├── specialization_ArgParseOption.html │ │ │ ├── specialization_ArrayGaps.html │ │ │ ├── specialization_ArrayString.html │ │ │ ├── specialization_AsyncFile.html │ │ │ ├── specialization_AutoSeqFormat.html │ │ │ ├── specialization_Automaton.html │ │ │ ├── specialization_AverageAccumulator.html │ │ │ ├── specialization_BadLexicalCast.html │ │ │ ├── specialization_BaiBamIndex.html │ │ │ ├── specialization_BamFileIn.html │ │ │ ├── specialization_BamFileOut.html │ │ │ ├── specialization_BandedLocalAlignmentEnumerator.html │ │ │ ├── specialization_Bed12Record.html │ │ │ ├── specialization_Bed3Record.html │ │ │ ├── specialization_Bed4Record.html │ │ │ ├── specialization_Bed5Record.html │ │ │ ├── specialization_Bed6Record.html │ │ │ ├── specialization_BedFileIn.html │ │ │ ├── specialization_BedFileOut.html │ │ │ ├── specialization_BfamPattern.html │ │ │ ├── specialization_BfsIterator.html │ │ │ ├── specialization_BitPackedPair.html │ │ │ ├── specialization_BitPackedTuple.html │ │ │ ├── specialization_BlastReportFileOut.html │ │ │ ├── specialization_BlastTabularFileIn.html │ │ │ ├── specialization_BlastTabularFileOut.html │ │ │ ├── specialization_BlockString.html │ │ │ ├── specialization_BndmAlgoPattern.html │ │ │ ├── specialization_BottomUpIterator.html │ │ │ ├── specialization_CStyleString.html │ │ │ ├── specialization_Caster.html │ │ │ ├── specialization_ChainedSeed.html │ │ │ ├── specialization_ConcatDirectStringSet.html │ │ │ ├── specialization_ConcatVirtualIterator.html │ │ │ ├── specialization_ConcurrentSuspendableQueue.html │ │ │ ├── specialization_Counter.html │ │ │ ├── specialization_CountingIdManager.html │ │ │ ├── specialization_D2AFScore.html │ │ │ ├── specialization_D2StarAFScore.html │ │ │ ├── specialization_D2zAFScore.html │ │ │ ├── specialization_DPSearchPattern.html │ │ │ ├── specialization_DeltaMapIterator.html │ │ │ ├── specialization_DependentStringSet.html │ │ │ ├── specialization_DfsPreorderIterator.html │ │ │ ├── specialization_DirectedGraph.html │ │ │ ├── specialization_Dna.html │ │ │ ├── specialization_Dna5.html │ │ │ ├── specialization_Dna5Q.html │ │ │ ├── specialization_DnaQ.html │ │ │ ├── specialization_Echoer.html │ │ │ ├── specialization_EdgeIterator.html │ │ │ ├── specialization_EditDistanceScore.html │ │ │ ├── specialization_EditEnvironment.html │ │ │ ├── specialization_EmptyFieldError.html │ │ │ ├── specialization_Equidistant.html │ │ │ ├── specialization_ExactFragment.html │ │ │ ├── specialization_ExactReversableFragment.html │ │ │ ├── specialization_ExternalString.html │ │ │ ├── specialization_FMIndex.html │ │ │ ├── specialization_Filter.html │ │ │ ├── specialization_Finite.html │ │ │ ├── specialization_FixedCyclicShape.html │ │ │ ├── specialization_FormattedFileIn.html │ │ │ ├── specialization_FormattedFileOut.html │ │ │ ├── specialization_GappedShape.html │ │ │ ├── specialization_GenericCyclicShape.html │ │ │ ├── specialization_GenericShape.html │ │ │ ├── specialization_GenerousDependentStringSet.html │ │ │ ├── specialization_GffFileIn.html │ │ │ ├── specialization_GffFileOut.html │ │ │ ├── specialization_GlobalAlign.html │ │ │ ├── specialization_GlobalChain.html │ │ │ ├── specialization_HammingSimplePattern.html │ │ │ ├── specialization_HammingStringEnumerator.html │ │ │ ├── specialization_HardwiredShape.html │ │ │ ├── specialization_HierarchicalPexPattern.html │ │ │ ├── specialization_HmmGraph.html │ │ │ ├── specialization_HorspoolPattern.html │ │ │ ├── specialization_IndexDfi.html │ │ │ ├── specialization_IndexEsa.html │ │ │ ├── specialization_IndexQGram.html │ │ │ ├── specialization_IndexSa.html │ │ │ ├── specialization_IndexWotd.html │ │ │ ├── specialization_InfixSegment.html │ │ │ ├── specialization_InputStreamIterator.html │ │ │ ├── specialization_IteratorProxy.html │ │ │ ├── specialization_Iupac.html │ │ │ ├── specialization_Joiner.html │ │ │ ├── specialization_JournaledSet.html │ │ │ ├── specialization_JournaledString.html │ │ │ ├── specialization_Levels.html │ │ │ ├── specialization_LevenshteinStringEnumerator.html │ │ │ ├── specialization_MMapString.html │ │ │ ├── specialization_MapperConfig.html │ │ │ ├── specialization_MapperConfigSize.html │ │ │ ├── specialization_MapperSpec.html │ │ │ ├── specialization_MatrixScore.html │ │ │ ├── specialization_MaxRepeatsIterator.html │ │ │ ├── specialization_ModCyclicShapeModifiedIterator.html │ │ │ ├── specialization_ModCyclicShapeModifiedString.html │ │ │ ├── specialization_ModPaddingIterator.html │ │ │ ├── specialization_ModPaddingString.html │ │ │ ├── specialization_ModReverseIterator.html │ │ │ ├── specialization_ModReverseString.html │ │ │ ├── specialization_ModViewModifiedIterator.html │ │ │ ├── specialization_ModViewModifiedString.html │ │ │ ├── specialization_MultiBfamPattern.html │ │ │ ├── specialization_MultiMemsIterator.html │ │ │ ├── specialization_MultiPoolAllocator.html │ │ │ ├── specialization_MultipleShiftAndPattern.html │ │ │ ├── specialization_MumsIterator.html │ │ │ ├── specialization_MyersPattern.html │ │ │ ├── specialization_N2AFScore.html │ │ │ ├── specialization_Namer.html │ │ │ ├── specialization_NonHierarchicalPexPattern.html │ │ │ ├── specialization_OneGappedShape.html │ │ │ ├── specialization_OpenAddressingQGramIndex.html │ │ │ ├── specialization_OracleBfamPattern.html │ │ │ ├── specialization_OracleMultiBfamPattern.html │ │ │ ├── specialization_OutEdgeIterator.html │ │ │ ├── specialization_OutputStreamIterator.html │ │ │ ├── specialization_OwnerStringSet.html │ │ │ ├── specialization_PackedPair.html │ │ │ ├── specialization_PackedString.html │ │ │ ├── specialization_PackedTriple.html │ │ │ ├── specialization_ParseError.html │ │ │ ├── specialization_PexPattern.html │ │ │ ├── specialization_PigeonholeFinder.html │ │ │ ├── specialization_PigeonholePattern.html │ │ │ ├── specialization_PizzaChiliIndex.html │ │ │ ├── specialization_PizzaChiliString.html │ │ │ ├── specialization_PoolConfig.html │ │ │ ├── specialization_PoolConfigSize.html │ │ │ ├── specialization_PoolSpec.html │ │ │ ├── specialization_PositionIterator.html │ │ │ ├── specialization_PrefixSegment.html │ │ │ ├── specialization_PriorityHeap.html │ │ │ ├── specialization_ProfileSeqFracScore.html │ │ │ ├── specialization_ProfileSeqScore.html │ │ │ ├── specialization_ReducedAminoAcid.html │ │ │ ├── specialization_ResizableContainerView.html │ │ │ ├── specialization_RightArrayBinaryTreeIterator.html │ │ │ ├── specialization_Rna.html │ │ │ ├── specialization_Rna5.html │ │ │ ├── specialization_RnaStructFileIn.html │ │ │ ├── specialization_RnaStructFileOut.html │ │ │ ├── specialization_RoiFileIn.html │ │ │ ├── specialization_RoiFileOut.html │ │ │ ├── specialization_Sampler.html │ │ │ ├── specialization_ScoreSimdWrapper.html │ │ │ ├── specialization_SeqFileIn.html │ │ │ ├── specialization_SeqFileOut.html │ │ │ ├── specialization_SetHorspoolPattern.html │ │ │ ├── specialization_ShiftAndPattern.html │ │ │ ├── specialization_ShiftOrPattern.html │ │ │ ├── specialization_Shifter.html │ │ │ ├── specialization_SimpleAllocator.html │ │ │ ├── specialization_SimpleHolder.html │ │ │ ├── specialization_SimpleIntervalsFileIn.html │ │ │ ├── specialization_SimpleIntervalsFileInOut.html │ │ │ ├── specialization_SimplePattern.html │ │ │ ├── specialization_SimpleScore.html │ │ │ ├── specialization_SimpleSeed.html │ │ │ ├── specialization_SimpleShape.html │ │ │ ├── specialization_SinglePoolAllocator.html │ │ │ ├── specialization_Skiplist.html │ │ │ ├── specialization_SorterConfig.html │ │ │ ├── specialization_SorterConfigSize.html │ │ │ ├── specialization_SorterSpec.html │ │ │ ├── specialization_Source.html │ │ │ ├── specialization_StdAdaptorIterator.html │ │ │ ├── specialization_StoreIntervalsIntervalTreeNode.html │ │ │ ├── specialization_StorePointsOnlyIntervalTreeNode.html │ │ │ ├── specialization_StreamIterator.html │ │ │ ├── specialization_SuffixSegment.html │ │ │ ├── specialization_SuperMaxRepeatsFastIterator.html │ │ │ ├── specialization_SuperMaxRepeatsIterator.html │ │ │ ├── specialization_SwiftFinder.html │ │ │ ├── specialization_SwiftLocalFinder.html │ │ │ ├── specialization_SwiftLocalPattern.html │ │ │ ├── specialization_SwiftPattern.html │ │ │ ├── specialization_SwiftSemiGlobalFinder.html │ │ │ ├── specialization_SwiftSemiGlobalPattern.html │ │ │ ├── specialization_SyncFile.html │ │ │ ├── specialization_TightDependentStringSet.html │ │ │ ├── specialization_TopDownHistoryIterator.html │ │ │ ├── specialization_TopDownIterator.html │ │ │ ├── specialization_Tree.html │ │ │ ├── specialization_TrieBfamPattern.html │ │ │ ├── specialization_TristateHolder.html │ │ │ ├── specialization_Tupler.html │ │ │ ├── specialization_UcscFileIn.html │ │ │ ├── specialization_UcscFileOut.html │ │ │ ├── specialization_UnbandedLocalAlignmentEnumerator.html │ │ │ ├── specialization_UndirectedGraph.html │ │ │ ├── specialization_UnexpectedEnd.html │ │ │ ├── specialization_UngappedShape.html │ │ │ ├── specialization_VSTreeIterator.html │ │ │ ├── specialization_VcfFileIn.html │ │ │ ├── specialization_VcfFileOut.html │ │ │ ├── specialization_VectorSet.html │ │ │ ├── specialization_VertexIterator.html │ │ │ ├── specialization_WTRDConfig.html │ │ │ ├── specialization_WavefrontExecutionPolicy.html │ │ │ ├── specialization_WaveletTree.html │ │ │ ├── specialization_WildShiftAndPattern.html │ │ │ ├── specialization_WordGraph.html │ │ │ ├── specialization_WuManberPattern.html │ │ │ ├── specialization_ZipContainerView.html │ │ │ ├── specialization_ZipIterator.html │ │ │ ├── tag_BlockOffsetOptimization.html │ │ │ ├── tag_Buchfink11.html │ │ │ ├── tag_Cannata10.html │ │ │ ├── tag_Default.html │ │ │ ├── tag_DotDrawing.html │ │ │ ├── tag_EditDistance.html │ │ │ ├── tag_GeneticCode.html │ │ │ ├── tag_HammingDistance.html │ │ │ ├── tag_LevenshteinDistance.html │ │ │ ├── tag_Li10.html │ │ │ ├── tag_Move.html │ │ │ ├── tag_Murphy10.html │ │ │ ├── tag_Murphy5.html │ │ │ ├── tag_Nothing.html │ │ │ ├── tag_Solis10.html │ │ │ ├── variable_BAM_95FLAG_95SUPPLEMENTARY_32_61_320x0800.html │ │ │ └── variable_LibraryStoreElementstd.html │ │ └── pkgconfig │ │ └── seqan-2.pc ├── stxxl │ ├── AUTHORS │ ├── CHANGELOG │ ├── CMakeLists.txt │ ├── Doxyfile │ ├── INSTALL │ ├── LICENSE_1_0.txt │ ├── README │ ├── TODO │ ├── doc │ │ ├── DoxygenLayout.xml │ │ ├── coding_style.dox │ │ ├── common.dox │ │ ├── design.dox │ │ ├── doxygen-extra.css │ │ ├── faq.dox │ │ ├── images │ │ │ ├── btree_uml.pdf │ │ │ ├── btree_uml.png │ │ │ ├── btree_uml.xmi │ │ │ ├── btree_uml_small.png │ │ │ ├── install_windows_boost_cmake.png │ │ │ ├── install_windows_boost_msvc10.png │ │ │ ├── install_windows_cmake.png │ │ │ ├── install_windows_msvc11.png │ │ │ ├── layer_diagram.pdf │ │ │ ├── layer_diagram.png │ │ │ ├── layer_diagram.svg │ │ │ ├── layer_diagram_small.png │ │ │ ├── overlapping_merging.pdf │ │ │ ├── overlapping_merging.png │ │ │ ├── overlapping_merging_small.png │ │ │ ├── overlapping_runformation.pdf │ │ │ ├── overlapping_runformation.png │ │ │ ├── overlapping_runformation_small.png │ │ │ ├── pdm.png │ │ │ ├── pdm.svg │ │ │ ├── pdm_small.png │ │ │ ├── pipeline_randomgraph.pdf │ │ │ ├── pipeline_randomgraph.png │ │ │ ├── pipeline_randomgraph_small.png │ │ │ ├── san00b_pqueue.png │ │ │ ├── san00b_pqueue.svg │ │ │ ├── san00b_pqueue_small.png │ │ │ ├── simple_logo.png │ │ │ ├── simple_logo.svg │ │ │ ├── vector_architecture.pdf │ │ │ ├── vector_architecture.png │ │ │ └── vector_architecture_small.png │ │ ├── install.dox │ │ ├── introduction.dox │ │ ├── mainpage.dox │ │ ├── references.bib │ │ ├── stxxl_tool.dox │ │ ├── tutorial.dox │ │ ├── tutorial_deque.dox │ │ ├── tutorial_map.dox │ │ ├── tutorial_matrix.dox │ │ ├── tutorial_pqueue.dox │ │ ├── tutorial_queue.dox │ │ ├── tutorial_sequence.dox │ │ ├── tutorial_sorter.dox │ │ ├── tutorial_stack.dox │ │ ├── tutorial_stream.dox │ │ ├── tutorial_unordered_map.dox │ │ ├── tutorial_vector.dox │ │ ├── tutorial_vector_billing.dox │ │ └── tutorial_vector_buf.dox │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── algo │ │ │ ├── CMakeLists.txt │ │ │ ├── copy_and_sort_file.cpp │ │ │ ├── phonebills.cpp │ │ │ ├── phonebills_genlog.cpp │ │ │ └── sort_file.cpp │ │ ├── applications │ │ │ ├── CMakeLists.txt │ │ │ └── skew3.cpp │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ └── cmdline.cpp │ │ ├── containers │ │ │ ├── CMakeLists.txt │ │ │ ├── copy_file.cpp │ │ │ ├── deque1.cpp │ │ │ ├── deque2.cpp │ │ │ ├── map1.cpp │ │ │ ├── matrix1.cpp │ │ │ ├── pqueue1.cpp │ │ │ ├── pqueue2.cpp │ │ │ ├── queue1.cpp │ │ │ ├── queue2.cpp │ │ │ ├── sequence1.cpp │ │ │ ├── sorter1.cpp │ │ │ ├── sorter2.cpp │ │ │ ├── stack1.cpp │ │ │ ├── stack2.cpp │ │ │ ├── unordered_map1.cpp │ │ │ ├── vector1.cpp │ │ │ ├── vector2.cpp │ │ │ └── vector_buf.cpp │ │ └── stream │ │ │ ├── CMakeLists.txt │ │ │ └── stream1.cpp │ ├── include │ │ ├── stxxl.h │ │ └── stxxl │ │ │ ├── algorithm │ │ │ ├── aligned_alloc │ │ │ ├── all │ │ │ ├── bits │ │ │ ├── algo │ │ │ │ ├── adaptor.h │ │ │ │ ├── async_schedule.h │ │ │ │ ├── inmemsort.h │ │ │ │ ├── intksort.h │ │ │ │ ├── ksort.h │ │ │ │ ├── losertree.h │ │ │ │ ├── random_shuffle.h │ │ │ │ ├── run_cursor.h │ │ │ │ ├── scan.h │ │ │ │ ├── sort.h │ │ │ │ ├── sort_base.h │ │ │ │ ├── sort_helper.h │ │ │ │ └── stable_ksort.h │ │ │ ├── common │ │ │ │ ├── addressable_queues.h │ │ │ │ ├── aligned_alloc.h │ │ │ │ ├── binary_buffer.h │ │ │ │ ├── cmdline.h │ │ │ │ ├── condition_variable.h │ │ │ │ ├── counting_ptr.h │ │ │ │ ├── error_handling.h │ │ │ │ ├── exceptions.h │ │ │ │ ├── exithandler.h │ │ │ │ ├── external_shared_ptr.h │ │ │ │ ├── is_sorted.h │ │ │ │ ├── log.h │ │ │ │ ├── mutex.h │ │ │ │ ├── new_alloc.h │ │ │ │ ├── onoff_switch.h │ │ │ │ ├── rand.h │ │ │ │ ├── seed.h │ │ │ │ ├── semaphore.h │ │ │ │ ├── settings.h │ │ │ │ ├── simple_vector.h │ │ │ │ ├── state.h │ │ │ │ ├── timer.h │ │ │ │ ├── tmeta.h │ │ │ │ ├── tuple.h │ │ │ │ ├── types.h │ │ │ │ ├── uint_types.h │ │ │ │ └── utils.h │ │ │ ├── compat │ │ │ │ ├── hash_map.h │ │ │ │ ├── type_traits.h │ │ │ │ └── unique_ptr.h │ │ │ ├── config.h.in │ │ │ ├── containers │ │ │ │ ├── btree │ │ │ │ │ ├── btree.h │ │ │ │ │ ├── iterator.h │ │ │ │ │ ├── iterator_map.h │ │ │ │ │ ├── leaf.h │ │ │ │ │ ├── node.h │ │ │ │ │ ├── node_cache.h │ │ │ │ │ └── root_node.h │ │ │ │ ├── deque.h │ │ │ │ ├── hash_map │ │ │ │ │ ├── block_cache.h │ │ │ │ │ ├── hash_map.h │ │ │ │ │ ├── iterator.h │ │ │ │ │ ├── iterator_map.h │ │ │ │ │ ├── tuning.h │ │ │ │ │ └── util.h │ │ │ │ ├── map.h │ │ │ │ ├── matrix.h │ │ │ │ ├── matrix_arithmetic.h │ │ │ │ ├── matrix_low_level.h │ │ │ │ ├── pager.h │ │ │ │ ├── pq_ext_merger.h │ │ │ │ ├── pq_helpers.h │ │ │ │ ├── pq_losertree.h │ │ │ │ ├── pq_mergers.h │ │ │ │ ├── priority_queue.h │ │ │ │ ├── queue.h │ │ │ │ ├── sequence.h │ │ │ │ ├── sorter.h │ │ │ │ ├── stack.h │ │ │ │ ├── unordered_map.h │ │ │ │ └── vector.h │ │ │ ├── defines.h │ │ │ ├── deprecated.h │ │ │ ├── io │ │ │ │ ├── boostfd_file.h │ │ │ │ ├── completion_handler.h │ │ │ │ ├── create_file.h │ │ │ │ ├── disk_queued_file.h │ │ │ │ ├── disk_queues.h │ │ │ │ ├── file.h │ │ │ │ ├── fileperblock_file.h │ │ │ │ ├── io.h │ │ │ │ ├── iostats.h │ │ │ │ ├── linuxaio_file.h │ │ │ │ ├── linuxaio_queue.h │ │ │ │ ├── linuxaio_request.h │ │ │ │ ├── mem_file.h │ │ │ │ ├── mmap_file.h │ │ │ │ ├── request.h │ │ │ │ ├── request_interface.h │ │ │ │ ├── request_operations.h │ │ │ │ ├── request_queue.h │ │ │ │ ├── request_queue_impl_1q.h │ │ │ │ ├── request_queue_impl_qwqr.h │ │ │ │ ├── request_queue_impl_worker.h │ │ │ │ ├── request_with_state.h │ │ │ │ ├── request_with_waiters.h │ │ │ │ ├── serving_request.h │ │ │ │ ├── simdisk_file.h │ │ │ │ ├── syscall_file.h │ │ │ │ ├── ufs_file_base.h │ │ │ │ ├── wbtl_file.h │ │ │ │ ├── wfs_file_base.h │ │ │ │ └── wincall_file.h │ │ │ ├── libstxxl.h │ │ │ ├── mng │ │ │ │ ├── adaptor.h │ │ │ │ ├── bid.h │ │ │ │ ├── block_alloc.h │ │ │ │ ├── block_alloc_interleaved.h │ │ │ │ ├── block_manager.h │ │ │ │ ├── block_prefetcher.h │ │ │ │ ├── block_scheduler.h │ │ │ │ ├── buf_istream.h │ │ │ │ ├── buf_istream_reverse.h │ │ │ │ ├── buf_ostream.h │ │ │ │ ├── buf_writer.h │ │ │ │ ├── config.h │ │ │ │ ├── disk_allocator.h │ │ │ │ ├── prefetch_pool.h │ │ │ │ ├── read_write_pool.h │ │ │ │ ├── typed_block.h │ │ │ │ └── write_pool.h │ │ │ ├── msvc_compatibility.h │ │ │ ├── namespace.h │ │ │ ├── noncopyable.h │ │ │ ├── parallel.h │ │ │ ├── singleton.h │ │ │ ├── stream │ │ │ │ ├── choose.h │ │ │ │ ├── sort_stream.h │ │ │ │ ├── sorted_runs.h │ │ │ │ ├── stream.h │ │ │ │ └── unique.h │ │ │ ├── unused.h │ │ │ ├── utils │ │ │ │ └── malloc.h │ │ │ ├── verbose.h │ │ │ └── version.h │ │ │ ├── cmdline │ │ │ ├── deque │ │ │ ├── io │ │ │ ├── ksort │ │ │ ├── mallocstats │ │ │ ├── map │ │ │ ├── mng │ │ │ ├── priority_queue │ │ │ ├── queue │ │ │ ├── random │ │ │ ├── random_shuffle │ │ │ ├── request │ │ │ ├── scan │ │ │ ├── sequence │ │ │ ├── sort │ │ │ ├── sorter │ │ │ ├── stable_ksort │ │ │ ├── stack │ │ │ ├── stats │ │ │ ├── stream │ │ │ ├── timer │ │ │ ├── types │ │ │ ├── unordered_map │ │ │ ├── vector │ │ │ └── version.h │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── algo │ │ │ └── async_schedule.cpp │ │ ├── common │ │ │ ├── cmdline.cpp │ │ │ ├── exithandler.cpp │ │ │ ├── log.cpp │ │ │ ├── rand.cpp │ │ │ ├── seed.cpp │ │ │ ├── utils.cpp │ │ │ ├── verbose.cpp │ │ │ └── version.cpp │ │ ├── io │ │ │ ├── boostfd_file.cpp │ │ │ ├── create_file.cpp │ │ │ ├── disk_queued_file.cpp │ │ │ ├── file.cpp │ │ │ ├── fileperblock_file.cpp │ │ │ ├── iostats.cpp │ │ │ ├── linuxaio_file.cpp │ │ │ ├── linuxaio_queue.cpp │ │ │ ├── linuxaio_request.cpp │ │ │ ├── mem_file.cpp │ │ │ ├── mmap_file.cpp │ │ │ ├── request.cpp │ │ │ ├── request_queue_impl_1q.cpp │ │ │ ├── request_queue_impl_qwqr.cpp │ │ │ ├── request_queue_impl_worker.cpp │ │ │ ├── request_with_state.cpp │ │ │ ├── request_with_waiters.cpp │ │ │ ├── serving_request.cpp │ │ │ ├── simdisk_file.cpp │ │ │ ├── syscall_file.cpp │ │ │ ├── ufs_file_base.cpp │ │ │ ├── ufs_platform.h │ │ │ ├── wbtl_file.cpp │ │ │ ├── wfs_file_base.cpp │ │ │ └── wincall_file.cpp │ │ ├── libstxxl.symbols │ │ └── mng │ │ │ ├── block_manager.cpp │ │ │ ├── config.cpp │ │ │ └── disk_allocator.cpp │ ├── local │ │ ├── CMakeLists.txt │ │ ├── test1.cpp │ │ └── test2.cpp │ ├── misc │ │ ├── analyze-include-dependencies.pl │ │ ├── analyze-source.pl │ │ ├── cmake │ │ │ ├── TestFileOffsetBits.c │ │ │ ├── TestLargeFiles.c.cmakein │ │ │ ├── TestLargeFiles.cmake │ │ │ ├── TestWindowsFSeek.c │ │ │ ├── stxxl-config.cmake.in │ │ │ ├── stxxl-version.cmake.in │ │ │ └── stxxl.pc │ │ ├── concat-lines │ │ ├── diskbench-avgdat.sh │ │ ├── diskbench.mk │ │ ├── do-release.txt │ │ ├── fileheader.txt │ │ ├── floating-average │ │ ├── iostat-plot.mk │ │ ├── record-load-iostat │ │ ├── remove-unless │ │ ├── uncrustify.cfg │ │ └── valgrind.supp │ ├── tests │ │ ├── CMakeLists.txt │ │ ├── algo │ │ │ ├── CMakeLists.txt │ │ │ ├── test_asch.cpp │ │ │ ├── test_bad_cmp.cpp │ │ │ ├── test_ksort.cpp │ │ │ ├── test_ksort_all_parameters.cpp │ │ │ ├── test_parallel_sort.cpp │ │ │ ├── test_random_shuffle.cpp │ │ │ ├── test_scan.cpp │ │ │ ├── test_sort.cpp │ │ │ ├── test_sort_all_parameters.cpp │ │ │ ├── test_sort_all_parameters.h │ │ │ ├── test_stable_ksort.cpp │ │ │ └── test_stable_ksort_all_parameters.cpp │ │ ├── common │ │ │ ├── CMakeLists.txt │ │ │ ├── test_binary_buffer.cpp │ │ │ ├── test_cmdline.cpp │ │ │ ├── test_counting_ptr.cpp │ │ │ ├── test_external_shared_ptr.cpp │ │ │ ├── test_globals.cpp │ │ │ ├── test_log2.cpp │ │ │ ├── test_manyunits.cpp │ │ │ ├── test_manyunits2.cpp │ │ │ ├── test_random.cpp │ │ │ ├── test_tuple.cpp │ │ │ └── test_uint_types.cpp │ │ ├── containers │ │ │ ├── CMakeLists.txt │ │ │ ├── btree │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_btree.cpp │ │ │ │ ├── test_btree_const_scan.cpp │ │ │ │ ├── test_btree_insert_erase.cpp │ │ │ │ ├── test_btree_insert_find.cpp │ │ │ │ └── test_btree_insert_scan.cpp │ │ │ ├── hash_map │ │ │ │ ├── CMakeLists.txt │ │ │ │ ├── test_hash_map.cpp │ │ │ │ ├── test_hash_map_block_cache.cpp │ │ │ │ ├── test_hash_map_iterators.cpp │ │ │ │ └── test_hash_map_reader_writer.cpp │ │ │ ├── map_test_handlers.h │ │ │ ├── test_deque.cpp │ │ │ ├── test_ext_merger.cpp │ │ │ ├── test_ext_merger2.cpp │ │ │ ├── test_iterators.cpp │ │ │ ├── test_many_stacks.cpp │ │ │ ├── test_map.cpp │ │ │ ├── test_map_random.cpp │ │ │ ├── test_matrix.cpp │ │ │ ├── test_migr_stack.cpp │ │ │ ├── test_pqueue.cpp │ │ │ ├── test_queue.cpp │ │ │ ├── test_queue2.cpp │ │ │ ├── test_sequence.cpp │ │ │ ├── test_sorter.cpp │ │ │ ├── test_stack.cpp │ │ │ ├── test_vector.cpp │ │ │ ├── test_vector_buf.cpp │ │ │ ├── test_vector_export.cpp │ │ │ └── test_vector_sizes.cpp │ │ ├── io │ │ │ ├── CMakeLists.txt │ │ │ ├── test_cancel.cpp │ │ │ ├── test_io.cpp │ │ │ ├── test_io_sizes.cpp │ │ │ ├── test_mmap.cpp │ │ │ └── test_sim_disk.cpp │ │ ├── mng │ │ │ ├── CMakeLists.txt │ │ │ ├── test_aligned.cpp │ │ │ ├── test_block_alloc_strategy.cpp │ │ │ ├── test_block_manager.cpp │ │ │ ├── test_block_manager1.cpp │ │ │ ├── test_block_manager2.cpp │ │ │ ├── test_block_scheduler.cpp │ │ │ ├── test_bmlayer.cpp │ │ │ ├── test_buf_streams.cpp │ │ │ ├── test_config.cpp │ │ │ ├── test_pool_pair.cpp │ │ │ ├── test_prefetch_pool.cpp │ │ │ ├── test_read_write_pool.cpp │ │ │ └── test_write_pool.cpp │ │ └── stream │ │ │ ├── CMakeLists.txt │ │ │ ├── test_loop.cpp │ │ │ ├── test_materialize.cpp │ │ │ ├── test_naive_transpose.cpp │ │ │ ├── test_push_sort.cpp │ │ │ ├── test_sorted_runs.cpp │ │ │ ├── test_stream.cpp │ │ │ └── test_stream1.cpp │ └── tools │ │ ├── CMakeLists.txt │ │ ├── benchmark_disks.cpp │ │ ├── benchmark_disks_random.cpp │ │ ├── benchmark_files.cpp │ │ ├── benchmark_pqueue.cpp │ │ ├── benchmark_sort.cpp │ │ ├── benchmarks │ │ ├── CMakeLists.txt │ │ ├── README │ │ ├── app_config.h │ │ ├── benchmark_naive_matrix.cpp │ │ ├── berkeley_db_benchmark.cpp │ │ ├── matrix_benchmark.cpp │ │ ├── monotonic_pq.cpp │ │ ├── pq_benchmark.cpp │ │ ├── stack_benchmark.cpp │ │ └── tpie_stack_benchmark.cpp │ │ ├── create_files.cpp │ │ ├── extras │ │ ├── CMakeLists.txt │ │ ├── benchmark_disk_and_flash.cpp │ │ ├── iobench_scatter_in_place.cpp │ │ └── pq_param.cpp │ │ ├── mallinfo.cpp │ │ ├── mlock.cpp │ │ └── stxxl_tool.cpp ├── tclap │ ├── Arg.h │ ├── ArgException.h │ ├── ArgTraits.h │ ├── CmdLine.h │ ├── CmdLineInterface.h │ ├── CmdLineOutput.h │ ├── Constraint.h │ ├── DocBookOutput.h │ ├── HelpVisitor.h │ ├── IgnoreRestVisitor.h │ ├── MultiArg.h │ ├── MultiSwitchArg.h │ ├── OptionalUnlabeledTracker.h │ ├── StandardTraits.h │ ├── StdOutput.h │ ├── SwitchArg.h │ ├── UnlabeledMultiArg.h │ ├── UnlabeledValueArg.h │ ├── ValueArg.h │ ├── ValuesConstraint.h │ ├── VersionVisitor.h │ ├── Visitor.h │ ├── XorHandler.h │ └── ZshCompletionOutput.h └── tools.h └── uninstall.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/README.md -------------------------------------------------------------------------------- /iGDA.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/iGDA.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /include/catch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/catch.hpp -------------------------------------------------------------------------------- /include/data_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/data_type.h -------------------------------------------------------------------------------- /include/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/file.h -------------------------------------------------------------------------------- /include/headers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/headers.h -------------------------------------------------------------------------------- /include/stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/stl.h -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/include/utils.h -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/install.sh -------------------------------------------------------------------------------- /script/igda_pipe_ont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/script/igda_pipe_ont -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/misc/basic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/basic.h -------------------------------------------------------------------------------- /src/misc/cmpreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/cmpreads.h -------------------------------------------------------------------------------- /src/misc/cmpreads_multithread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/cmpreads_multithread.cpp -------------------------------------------------------------------------------- /src/misc/cmpreads_multithread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/cmpreads_multithread.h -------------------------------------------------------------------------------- /src/misc/condfreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/condfreq.h -------------------------------------------------------------------------------- /src/misc/correctreads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/correctreads.h -------------------------------------------------------------------------------- /src/misc/dist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/dist.h -------------------------------------------------------------------------------- /src/misc/graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/graph.cpp -------------------------------------------------------------------------------- /src/misc/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/graph.h -------------------------------------------------------------------------------- /src/misc/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/io.h -------------------------------------------------------------------------------- /src/misc/m5tofa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/m5tofa.h -------------------------------------------------------------------------------- /src/misc/merge_data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/merge_data.cpp -------------------------------------------------------------------------------- /src/misc/merge_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/merge_data.h -------------------------------------------------------------------------------- /src/misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/misc.h -------------------------------------------------------------------------------- /src/misc/permute_reads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/permute_reads.cpp -------------------------------------------------------------------------------- /src/misc/permute_reads.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/permute_reads.h -------------------------------------------------------------------------------- /src/misc/pileup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/pileup.h -------------------------------------------------------------------------------- /src/misc/seqopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/seqopt.h -------------------------------------------------------------------------------- /src/misc/sort_order.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/sort_order.h -------------------------------------------------------------------------------- /src/misc/statistics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/statistics.h -------------------------------------------------------------------------------- /src/misc/var2vcf.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/var2vcf.cpp -------------------------------------------------------------------------------- /src/misc/var2vcf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/misc/var2vcf.h -------------------------------------------------------------------------------- /src/modules/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/.DS_Store -------------------------------------------------------------------------------- /src/modules/aligncoder/aligncoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/aligncoder/aligncoder.cpp -------------------------------------------------------------------------------- /src/modules/aligncoder/aligncoder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/aligncoder/aligncoder.h -------------------------------------------------------------------------------- /src/modules/aligncoder/aligncodersnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/aligncoder/aligncodersnv.cpp -------------------------------------------------------------------------------- /src/modules/aligncoder/aligncodersnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/aligncoder/aligncodersnv.h -------------------------------------------------------------------------------- /src/modules/alignreader/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/.DS_Store -------------------------------------------------------------------------------- /src/modules/alignreader/alignreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreader.cpp -------------------------------------------------------------------------------- /src/modules/alignreader/alignreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreader.h -------------------------------------------------------------------------------- /src/modules/alignreader/alignreaderm5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreaderm5.cpp -------------------------------------------------------------------------------- /src/modules/alignreader/alignreaderm5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreaderm5.h -------------------------------------------------------------------------------- /src/modules/alignreader/alignreadersam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreadersam.cpp -------------------------------------------------------------------------------- /src/modules/alignreader/alignreadersam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/alignreader/alignreadersam.h -------------------------------------------------------------------------------- /src/modules/assemble/assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/assemble/assembler.cpp -------------------------------------------------------------------------------- /src/modules/assemble/assembler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/assemble/assembler.h -------------------------------------------------------------------------------- /src/modules/detectsingle/detectsingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/detectsingle/detectsingle.cpp -------------------------------------------------------------------------------- /src/modules/detectsingle/detectsingle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/detectsingle/detectsingle.h -------------------------------------------------------------------------------- /src/modules/detectsingle/detectsinglesnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/detectsingle/detectsinglesnv.cpp -------------------------------------------------------------------------------- /src/modules/detectsingle/detectsinglesnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/detectsingle/detectsinglesnv.h -------------------------------------------------------------------------------- /src/modules/dforest/dforest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/dforest/dforest.cpp -------------------------------------------------------------------------------- /src/modules/dforest/dforest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/dforest/dforest.h -------------------------------------------------------------------------------- /src/modules/dforest/dforestsnvstl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/dforest/dforestsnvstl.cpp -------------------------------------------------------------------------------- /src/modules/dforest/dforestsnvstl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/dforest/dforestsnvstl.h -------------------------------------------------------------------------------- /src/modules/errormodel/errormodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/errormodel/errormodel.cpp -------------------------------------------------------------------------------- /src/modules/errormodel/errormodel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/errormodel/errormodel.h -------------------------------------------------------------------------------- /src/modules/errormodel/errormodelsnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/errormodel/errormodelsnv.cpp -------------------------------------------------------------------------------- /src/modules/errormodel/errormodelsnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/errormodel/errormodelsnv.h -------------------------------------------------------------------------------- /src/modules/modules.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/modules.h -------------------------------------------------------------------------------- /src/modules/rsm/rsmsnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/rsm/rsmsnv.cpp -------------------------------------------------------------------------------- /src/modules/rsm/rsmsnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/src/modules/rsm/rsmsnv.h -------------------------------------------------------------------------------- /test/test_AlignCoder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_AlignCoder.cpp -------------------------------------------------------------------------------- /test/test_AlignReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_AlignReader.cpp -------------------------------------------------------------------------------- /test/test_assembler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_assembler.cpp -------------------------------------------------------------------------------- /test/test_detectsingle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_detectsingle.cpp -------------------------------------------------------------------------------- /test/test_dforest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_dforest.cpp -------------------------------------------------------------------------------- /test/test_dforeststxxl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_dforeststxxl.cpp -------------------------------------------------------------------------------- /test/test_errormodel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_errormodel.cpp -------------------------------------------------------------------------------- /test/test_graph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_graph.cpp -------------------------------------------------------------------------------- /test/test_misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_misc.cpp -------------------------------------------------------------------------------- /test/test_pcg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_pcg.cpp -------------------------------------------------------------------------------- /test/test_performance.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_performance.cpp -------------------------------------------------------------------------------- /test/test_permute_reads.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_permute_reads.cpp -------------------------------------------------------------------------------- /test/test_pileup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_pileup.cpp -------------------------------------------------------------------------------- /test/test_prob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_prob.cpp -------------------------------------------------------------------------------- /test/test_rsm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_rsm.cpp -------------------------------------------------------------------------------- /test/test_stxxl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/test/test_stxxl.cpp -------------------------------------------------------------------------------- /tools/boost/include/boost/aligned_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/aligned_storage.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/any.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/any.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/archive/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/archive/dinkumware.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/archive/wcslen.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/archive/wcslen.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/array.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/assert.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/atomic.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/atomic/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/atomic/atomic.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/atomic/atomic_flag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/atomic/atomic_flag.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/atomic/detail/link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/atomic/detail/link.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/atomic/fences.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/atomic/fences.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/arg.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/bind.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/bind_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/bind_cc.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/bind_mf2_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/bind_mf2_cc.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/bind_mf_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/bind_mf_cc.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/bind_template.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/bind_template.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/mem_fn.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/mem_fn_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/mem_fn_cc.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/mem_fn_vw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/mem_fn_vw.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/placeholders.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/protect.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/bind/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/bind/storage.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/blank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/blank.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/blank_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/blank_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/call_traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/cast.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/cerrno.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/checked_delete.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/chrono/ceil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/chrono/ceil.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/chrono/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/chrono/chrono.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/chrono/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/chrono/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/chrono/duration.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/chrono/duration.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/chrono/time_point.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/chrono/time_point.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/compressed_pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/compressed_pair.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/concept/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/concept/assert.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/concept/requires.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/concept/requires.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/concept/usage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/concept/usage.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/concept_archetype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/concept_archetype.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/concept_check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/concept_check.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/user.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/config/workaround.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/container/options.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/container/options.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/container/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/container/vector.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/addressof.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/demangle.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/ignore_unused.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/ignore_unused.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/is_same.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/ref.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/swap.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/cregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/cregex.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/cstdint.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/current_function.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/date_time/c_time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/date_time/c_time.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/date_time/date.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/date_time/date.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/date_time/period.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/date_time/period.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/date_time/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/date_time/time.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/endian.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/is_sorted.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/select_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/select_type.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/winapi/time.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/dynamic_bitset.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/dynamic_bitset_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/dynamic_bitset_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/exception/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/exception/info.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/exception_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/exception_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/foreach.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/foreach.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/foreach_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/foreach_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/function.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/function/function0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/function/function0.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/function/function1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/function/function1.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/function_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/function_equal.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/functional/hash.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/functional/hash.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/mpl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/mpl.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/mpl/at.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/mpl/back.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/mpl/end.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/mpl/size.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/fusion/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/fusion/tuple.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/get_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/get_pointer.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/graph/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/graph/exception.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/graph/graphml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/graph/graphml.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/graph/graphviz.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/graph/graphviz.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/graph/subgraph.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/graph/subgraph.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/graph/visitors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/graph/visitors.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/implicit_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/implicit_cast.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/integer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/integer.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/integer_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/integer_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/integer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/integer_traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/intrusive_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/intrusive_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/io/ios_state.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/io/ios_state.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/io_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/io_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/is_placeholder.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/lexical_cast.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/limits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/make_shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/make_shared.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/math/tools/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/math/tools/user.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mem_fn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mem_fn.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/memory_order.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/algo/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/algo/move.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/algorithm.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/core.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/iterator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/move.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/move.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/unique_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/unique_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/move/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/move/utility.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/allocator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/allocator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/collectives.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/collectives.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/datatype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/datatype.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/environment.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/exception.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/group.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/group.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/inplace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/inplace.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/nonblocking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/nonblocking.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/operations.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/python.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/request.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/status.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/status.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpi/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpi/timer.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/always.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/and.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/at.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/aux_/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/aux_/unwrap.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/back.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/base.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/comparison.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/empty_base.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/end.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/erase_key.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/find.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/for_each.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/front.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/int.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/less.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/less_equal.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/limits/map.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/long.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map0.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map10.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map20.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map30.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map40.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/map/map50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/map/map50.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/min.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/next.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/not.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/or.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/order_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/order_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/pair_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/pair_view.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/pop_back.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/print.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/single_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/single_view.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/size.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/times.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/transform.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/unpack_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/unpack_args.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/void.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/mpl/zip_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/mpl/zip_view.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/multi_index/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/multi_index/tag.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/next_prior.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/non_type.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/noncopyable.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/none.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/none_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/none_t.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/operators.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/optional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/optional.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/parameter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/parameter.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/parameter/match.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/parameter/match.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/parameter/name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/parameter/name.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/pending/queue.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/pending/queue.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/pointee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/pointee.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/predef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/compiler.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/hardware.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/language.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/library.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/library/c.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/make.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/aix.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/amigaos.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/android.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/android.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/beos.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/bsd.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/bsd/net.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/cygwin.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/haiku.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/hpux.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/ios.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/irix.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/linux.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/macos.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/os400.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/qnxnto.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/solaris.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/unix.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/vms.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/os/windows.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/other.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/platform.h -------------------------------------------------------------------------------- /tools/boost/include/boost/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/predef/version.h -------------------------------------------------------------------------------- /tools/boost/include/boost/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/preprocessor.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/args.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/core.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/deep_copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/deep_copy.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/domain.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/domain.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/eval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/eval.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/expr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/extends.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/extends.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/fusion.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/fusion.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/generate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/generate.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/literal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/literal.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/make_expr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/make_expr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/matches.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/matches.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/operators.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/proto_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/proto_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/repeat.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/tags.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/proto/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/proto/traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/args.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/args_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/args_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/bases.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/bases.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/borrowed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/borrowed.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/call.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/call.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/cast.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/class.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/def.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/dict.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/dict.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/enum.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/errors.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/errors.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/exec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/exec.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/extract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/extract.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/handle.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/implicit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/implicit.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/import.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/import.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/init.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/init.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/iterator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/list.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/long.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/module.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/module.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/numpy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/numpy.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/object.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/other.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/other.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/override.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/override.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/pointee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/pointee.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/proxy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/proxy.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/refcount.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/refcount.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/scope.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/scope.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/self.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/slice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/slice.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/ssize_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/ssize_t.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/str.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/str.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/tag.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/tuple.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/type_id.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/type_id.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/python/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/python/wrapper.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/begin.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/concepts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/concepts.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/distance.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/empty.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/end.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/functions.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/irange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/irange.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/iterator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/range_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/range_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/rbegin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/rbegin.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/rend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/rend.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/size.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/range/size_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/range/size_type.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/ratio/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/ratio/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/ratio/ratio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/ratio/ratio.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/ratio/ratio_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/ratio/ratio_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/rational.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/rational.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/ref.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/icu.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/icu.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/user.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/v4/cregex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/v4/cregex.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/v4/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/v4/regex.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex/v4/states.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex/v4/states.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/regex_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/regex_fwd.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/scoped_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/scoped_array.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/scoped_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/scoped_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/shared_array.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/smart_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/smart_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/static_assert.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/swap.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/system/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/system/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/executor.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/future.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/locks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/locks.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/mutex.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/once.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/once.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/tss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/tss.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/thread/xtime.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/thread/xtime.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/throw_exception.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/token_functions.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/token_functions.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/token_iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/token_iterator.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/tokenizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/tokenizer.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/tuple/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/tuple/tuple.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/type.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/type_index.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/type_index.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/type_traits.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/decltype.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/decltype.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/message.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/native.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/typeof.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/vector.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/typeof/vector50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/typeof/vector50.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/unordered_map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/unordered_map.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/unordered_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/unordered_set.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/utility.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/utility/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/utility/binary.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/utility/declval.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/utility/swap.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/version.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/visit_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/visit_each.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/weak_ptr.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/config.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/dll.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/event.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/handles.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/handles.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/system.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/system.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/thread.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/time.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/timers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/timers.hpp -------------------------------------------------------------------------------- /tools/boost/include/boost/winapi/wait.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/boost/include/boost/winapi/wait.hpp -------------------------------------------------------------------------------- /tools/khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/khash.h -------------------------------------------------------------------------------- /tools/kseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/kseq.h -------------------------------------------------------------------------------- /tools/pcg/pcg_extras.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/pcg/pcg_extras.hpp -------------------------------------------------------------------------------- /tools/pcg/pcg_random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/pcg/pcg_random.hpp -------------------------------------------------------------------------------- /tools/pcg/pcg_uint128.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/pcg/pcg_uint128.hpp -------------------------------------------------------------------------------- /tools/prob/prob.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/prob/prob.cpp -------------------------------------------------------------------------------- /tools/prob/prob.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/prob/prob.hpp -------------------------------------------------------------------------------- /tools/seqan/seqan: -------------------------------------------------------------------------------- 1 | ./seqan-library-2.4.0 -------------------------------------------------------------------------------- /tools/seqan/seqan-library-2.4.0/share/doc/seqan/html/demos/dox/index/open_save.cpp.stdout: -------------------------------------------------------------------------------- 1 | 1 2 | 1 3 | -------------------------------------------------------------------------------- /tools/seqan/seqan-library-2.4.0/share/doc/seqan/html/demos/dox/parallel/queue_example.cpp.stdout: -------------------------------------------------------------------------------- 1 | SUCCESS 2 | -------------------------------------------------------------------------------- /tools/stxxl/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/AUTHORS -------------------------------------------------------------------------------- /tools/stxxl/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/CHANGELOG -------------------------------------------------------------------------------- /tools/stxxl/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/Doxyfile -------------------------------------------------------------------------------- /tools/stxxl/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/INSTALL -------------------------------------------------------------------------------- /tools/stxxl/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/LICENSE_1_0.txt -------------------------------------------------------------------------------- /tools/stxxl/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/README -------------------------------------------------------------------------------- /tools/stxxl/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/TODO -------------------------------------------------------------------------------- /tools/stxxl/doc/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/DoxygenLayout.xml -------------------------------------------------------------------------------- /tools/stxxl/doc/coding_style.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/coding_style.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/common.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/common.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/design.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/design.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/doxygen-extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/doxygen-extra.css -------------------------------------------------------------------------------- /tools/stxxl/doc/faq.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/faq.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/images/btree_uml.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/btree_uml.pdf -------------------------------------------------------------------------------- /tools/stxxl/doc/images/btree_uml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/btree_uml.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/btree_uml.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/btree_uml.xmi -------------------------------------------------------------------------------- /tools/stxxl/doc/images/btree_uml_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/btree_uml_small.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/layer_diagram.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/layer_diagram.pdf -------------------------------------------------------------------------------- /tools/stxxl/doc/images/layer_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/layer_diagram.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/layer_diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/layer_diagram.svg -------------------------------------------------------------------------------- /tools/stxxl/doc/images/pdm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/pdm.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/pdm.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/pdm.svg -------------------------------------------------------------------------------- /tools/stxxl/doc/images/pdm_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/pdm_small.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/san00b_pqueue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/san00b_pqueue.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/san00b_pqueue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/san00b_pqueue.svg -------------------------------------------------------------------------------- /tools/stxxl/doc/images/simple_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/simple_logo.png -------------------------------------------------------------------------------- /tools/stxxl/doc/images/simple_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/images/simple_logo.svg -------------------------------------------------------------------------------- /tools/stxxl/doc/install.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/install.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/introduction.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/introduction.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/mainpage.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/mainpage.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/references.bib -------------------------------------------------------------------------------- /tools/stxxl/doc/stxxl_tool.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/stxxl_tool.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_deque.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_deque.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_map.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_map.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_matrix.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_matrix.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_pqueue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_pqueue.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_queue.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_queue.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_sequence.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_sequence.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_sorter.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_sorter.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_stack.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_stack.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_stream.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_stream.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_unordered_map.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_unordered_map.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_vector.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_vector.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_vector_billing.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_vector_billing.dox -------------------------------------------------------------------------------- /tools/stxxl/doc/tutorial_vector_buf.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/doc/tutorial_vector_buf.dox -------------------------------------------------------------------------------- /tools/stxxl/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/examples/algo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/algo/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/examples/algo/phonebills.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/algo/phonebills.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/algo/sort_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/algo/sort_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/applications/skew3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/applications/skew3.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/common/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/examples/common/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/common/cmdline.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/copy_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/copy_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/deque1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/deque1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/deque2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/deque2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/map1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/map1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/matrix1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/matrix1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/pqueue1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/pqueue1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/pqueue2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/pqueue2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/queue1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/queue1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/queue2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/queue2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/sequence1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/sequence1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/sorter1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/sorter1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/sorter2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/sorter2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/stack1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/stack1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/stack2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/stack2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/vector1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/vector1.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/containers/vector2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/containers/vector2.cpp -------------------------------------------------------------------------------- /tools/stxxl/examples/stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/stream/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/examples/stream/stream1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/examples/stream/stream1.cpp -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/algorithm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/algorithm -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/aligned_alloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/aligned_alloc -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/all -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/algo/adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/algo/adaptor.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/algo/ksort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/algo/ksort.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/algo/scan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/algo/scan.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/algo/sort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/algo/sort.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/log.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/mutex.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/rand.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/seed.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/state.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/timer.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/tmeta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/tmeta.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/tuple.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/types.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/common/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/common/utils.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/config.h.in -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/defines.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/deprecated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/deprecated.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/file.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/io.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/iostats.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/iostats.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/mem_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/mem_file.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/mmap_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/mmap_file.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/request.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/request.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/io/wbtl_file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/io/wbtl_file.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/libstxxl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/libstxxl.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/mng/adaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/mng/adaptor.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/mng/bid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/mng/bid.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/mng/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/mng/config.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/namespace.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/noncopyable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/noncopyable.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/parallel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/parallel.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/singleton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/singleton.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/unused.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/unused.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/utils/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/utils/malloc.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/verbose.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/bits/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/bits/version.h -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/cmdline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/cmdline -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/deque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/deque -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/io: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/io -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/ksort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/ksort -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/mallocstats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/mallocstats -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/map -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/mng: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/mng -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/priority_queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/priority_queue -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/queue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/queue -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/random: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/random -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/random_shuffle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/random_shuffle -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/request: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/request -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/scan: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/scan -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/sequence: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/sequence -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/sort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/sort -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/sorter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/sorter -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/stable_ksort: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/stable_ksort -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/stack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/stack -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/stats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/stats -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/stream: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/stream -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/timer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/timer -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/types: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/types -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/unordered_map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/unordered_map -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/vector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/vector -------------------------------------------------------------------------------- /tools/stxxl/include/stxxl/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/include/stxxl/version.h -------------------------------------------------------------------------------- /tools/stxxl/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/lib/algo/async_schedule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/algo/async_schedule.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/cmdline.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/exithandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/exithandler.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/log.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/rand.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/rand.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/seed.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/seed.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/utils.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/verbose.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/verbose.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/common/version.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/common/version.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/boostfd_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/boostfd_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/create_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/create_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/disk_queued_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/disk_queued_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/fileperblock_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/fileperblock_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/iostats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/iostats.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/linuxaio_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/linuxaio_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/linuxaio_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/linuxaio_queue.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/linuxaio_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/linuxaio_request.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/mem_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/mem_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/mmap_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/mmap_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/request.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/request_queue_impl_1q.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/request_queue_impl_1q.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/request_with_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/request_with_state.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/request_with_waiters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/request_with_waiters.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/serving_request.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/serving_request.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/simdisk_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/simdisk_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/syscall_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/syscall_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/ufs_file_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/ufs_file_base.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/ufs_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/ufs_platform.h -------------------------------------------------------------------------------- /tools/stxxl/lib/io/wbtl_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/wbtl_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/wfs_file_base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/wfs_file_base.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/io/wincall_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/io/wincall_file.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/libstxxl.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/libstxxl.symbols -------------------------------------------------------------------------------- /tools/stxxl/lib/mng/block_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/mng/block_manager.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/mng/config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/mng/config.cpp -------------------------------------------------------------------------------- /tools/stxxl/lib/mng/disk_allocator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/lib/mng/disk_allocator.cpp -------------------------------------------------------------------------------- /tools/stxxl/local/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/local/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/local/test1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/local/test1.cpp -------------------------------------------------------------------------------- /tools/stxxl/local/test2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/local/test2.cpp -------------------------------------------------------------------------------- /tools/stxxl/misc/analyze-source.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/analyze-source.pl -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/TestFileOffsetBits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/TestFileOffsetBits.c -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/TestLargeFiles.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/TestLargeFiles.cmake -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/TestWindowsFSeek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/TestWindowsFSeek.c -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/stxxl-config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/stxxl-config.cmake.in -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/stxxl-version.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/stxxl-version.cmake.in -------------------------------------------------------------------------------- /tools/stxxl/misc/cmake/stxxl.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/cmake/stxxl.pc -------------------------------------------------------------------------------- /tools/stxxl/misc/concat-lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/concat-lines -------------------------------------------------------------------------------- /tools/stxxl/misc/diskbench-avgdat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/diskbench-avgdat.sh -------------------------------------------------------------------------------- /tools/stxxl/misc/diskbench.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/diskbench.mk -------------------------------------------------------------------------------- /tools/stxxl/misc/do-release.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/do-release.txt -------------------------------------------------------------------------------- /tools/stxxl/misc/fileheader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/fileheader.txt -------------------------------------------------------------------------------- /tools/stxxl/misc/floating-average: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/floating-average -------------------------------------------------------------------------------- /tools/stxxl/misc/iostat-plot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/iostat-plot.mk -------------------------------------------------------------------------------- /tools/stxxl/misc/record-load-iostat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/record-load-iostat -------------------------------------------------------------------------------- /tools/stxxl/misc/remove-unless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/remove-unless -------------------------------------------------------------------------------- /tools/stxxl/misc/uncrustify.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/uncrustify.cfg -------------------------------------------------------------------------------- /tools/stxxl/misc/valgrind.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/misc/valgrind.supp -------------------------------------------------------------------------------- /tools/stxxl/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_asch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_asch.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_bad_cmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_bad_cmp.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_ksort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_ksort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_parallel_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_parallel_sort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_scan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_scan.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_sort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/algo/test_stable_ksort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/algo/test_stable_ksort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_cmdline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_cmdline.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_globals.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_log2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_log2.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_manyunits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_manyunits.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_manyunits2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_manyunits2.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_random.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_tuple.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_tuple.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/common/test_uint_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/common/test_uint_types.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_deque.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_deque.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_map.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_map.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_matrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_matrix.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_pqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_pqueue.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_queue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_queue.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_queue2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_queue2.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_sorter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_sorter.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_stack.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/containers/test_vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/containers/test_vector.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/io/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/io/test_cancel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/test_cancel.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/io/test_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/test_io.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/io/test_io_sizes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/test_io_sizes.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/io/test_mmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/test_mmap.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/io/test_sim_disk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/io/test_sim_disk.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_aligned.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_aligned.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_block_manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_block_manager.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_block_manager1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_block_manager1.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_block_manager2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_block_manager2.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_bmlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_bmlayer.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_buf_streams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_buf_streams.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_config.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_pool_pair.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_pool_pair.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_prefetch_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_prefetch_pool.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/mng/test_write_pool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/mng/test_write_pool.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_loop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_loop.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_materialize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_materialize.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_push_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_push_sort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_sorted_runs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_sorted_runs.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_stream.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_stream.cpp -------------------------------------------------------------------------------- /tools/stxxl/tests/stream/test_stream1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tests/stream/test_stream1.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmark_disks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmark_disks.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmark_disks_random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmark_disks_random.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmark_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmark_files.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmark_pqueue.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmark_pqueue.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmark_sort.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmark_sort.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmarks/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmarks/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmarks/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmarks/README -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmarks/app_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmarks/app_config.h -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmarks/monotonic_pq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmarks/monotonic_pq.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/benchmarks/pq_benchmark.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/benchmarks/pq_benchmark.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/create_files.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/create_files.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/extras/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/extras/CMakeLists.txt -------------------------------------------------------------------------------- /tools/stxxl/tools/extras/pq_param.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/extras/pq_param.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/mallinfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/mallinfo.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/mlock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/mlock.cpp -------------------------------------------------------------------------------- /tools/stxxl/tools/stxxl_tool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/stxxl/tools/stxxl_tool.cpp -------------------------------------------------------------------------------- /tools/tclap/Arg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/Arg.h -------------------------------------------------------------------------------- /tools/tclap/ArgException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/ArgException.h -------------------------------------------------------------------------------- /tools/tclap/ArgTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/ArgTraits.h -------------------------------------------------------------------------------- /tools/tclap/CmdLine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/CmdLine.h -------------------------------------------------------------------------------- /tools/tclap/CmdLineInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/CmdLineInterface.h -------------------------------------------------------------------------------- /tools/tclap/CmdLineOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/CmdLineOutput.h -------------------------------------------------------------------------------- /tools/tclap/Constraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/Constraint.h -------------------------------------------------------------------------------- /tools/tclap/DocBookOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/DocBookOutput.h -------------------------------------------------------------------------------- /tools/tclap/HelpVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/HelpVisitor.h -------------------------------------------------------------------------------- /tools/tclap/IgnoreRestVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/IgnoreRestVisitor.h -------------------------------------------------------------------------------- /tools/tclap/MultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/MultiArg.h -------------------------------------------------------------------------------- /tools/tclap/MultiSwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/MultiSwitchArg.h -------------------------------------------------------------------------------- /tools/tclap/OptionalUnlabeledTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/OptionalUnlabeledTracker.h -------------------------------------------------------------------------------- /tools/tclap/StandardTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/StandardTraits.h -------------------------------------------------------------------------------- /tools/tclap/StdOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/StdOutput.h -------------------------------------------------------------------------------- /tools/tclap/SwitchArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/SwitchArg.h -------------------------------------------------------------------------------- /tools/tclap/UnlabeledMultiArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/UnlabeledMultiArg.h -------------------------------------------------------------------------------- /tools/tclap/UnlabeledValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/UnlabeledValueArg.h -------------------------------------------------------------------------------- /tools/tclap/ValueArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/ValueArg.h -------------------------------------------------------------------------------- /tools/tclap/ValuesConstraint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/ValuesConstraint.h -------------------------------------------------------------------------------- /tools/tclap/VersionVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/VersionVisitor.h -------------------------------------------------------------------------------- /tools/tclap/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/Visitor.h -------------------------------------------------------------------------------- /tools/tclap/XorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/XorHandler.h -------------------------------------------------------------------------------- /tools/tclap/ZshCompletionOutput.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tclap/ZshCompletionOutput.h -------------------------------------------------------------------------------- /tools/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/tools/tools.h -------------------------------------------------------------------------------- /uninstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zhixingfeng/iGDA/HEAD/uninstall.sh --------------------------------------------------------------------------------