├── .gitignore ├── LICENSE.txt ├── MANIFEST.in ├── README.md ├── ddot ├── Ontology.py ├── __init__.py ├── alignOntology │ ├── LICENSE │ ├── README │ ├── alignOntology.cpp │ ├── alignmentUtils.cpp │ ├── alignmentUtils.h │ ├── boost_1_47_0 │ │ ├── LICENSE_1_0.txt │ │ ├── boost │ │ │ ├── aligned_storage.hpp │ │ │ ├── array.hpp │ │ │ ├── assert.hpp │ │ │ ├── call_traits.hpp │ │ │ ├── checked_delete.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 │ │ │ │ │ ├── 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 │ │ │ │ ├── no_tr1 │ │ │ │ │ ├── cmath.hpp │ │ │ │ │ ├── complex.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── memory.hpp │ │ │ │ │ └── utility.hpp │ │ │ │ ├── platform │ │ │ │ │ ├── aix.hpp │ │ │ │ │ ├── amigaos.hpp │ │ │ │ │ ├── beos.hpp │ │ │ │ │ ├── bsd.hpp │ │ │ │ │ ├── cygwin.hpp │ │ │ │ │ ├── hpux.hpp │ │ │ │ │ ├── irix.hpp │ │ │ │ │ ├── linux.hpp │ │ │ │ │ ├── macos.hpp │ │ │ │ │ ├── qnxnto.hpp │ │ │ │ │ ├── solaris.hpp │ │ │ │ │ ├── symbian.hpp │ │ │ │ │ ├── vms.hpp │ │ │ │ │ ├── vxworks.hpp │ │ │ │ │ └── win32.hpp │ │ │ │ ├── posix_features.hpp │ │ │ │ ├── requires_threads.hpp │ │ │ │ ├── select_compiler_config.hpp │ │ │ │ ├── select_platform_config.hpp │ │ │ │ ├── select_stdlib_config.hpp │ │ │ │ ├── stdlib │ │ │ │ │ ├── dinkumware.hpp │ │ │ │ │ ├── libcomo.hpp │ │ │ │ │ ├── libcpp.hpp │ │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ │ ├── modena.hpp │ │ │ │ │ ├── msl.hpp │ │ │ │ │ ├── roguewave.hpp │ │ │ │ │ ├── sgi.hpp │ │ │ │ │ ├── stlport.hpp │ │ │ │ │ └── vacpp.hpp │ │ │ │ ├── suffix.hpp │ │ │ │ ├── user.hpp │ │ │ │ └── warning_disable.hpp │ │ │ ├── current_function.hpp │ │ │ ├── detail │ │ │ │ ├── call_traits.hpp │ │ │ │ ├── endian.hpp │ │ │ │ ├── interlocked.hpp │ │ │ │ ├── iterator.hpp │ │ │ │ ├── lcast_precision.hpp │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ ├── limits.hpp │ │ │ │ ├── ob_call_traits.hpp │ │ │ │ ├── sp_typeinfo.hpp │ │ │ │ └── workaround.hpp │ │ │ ├── exception │ │ │ │ ├── detail │ │ │ │ │ └── attribute_noreturn.hpp │ │ │ │ └── exception.hpp │ │ │ ├── integer_traits.hpp │ │ │ ├── iterator.hpp │ │ │ ├── lexical_cast.hpp │ │ │ ├── limits.hpp │ │ │ ├── memory_order.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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ │ ├── eti.hpp │ │ │ │ │ │ ├── forwarding.hpp │ │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ │ ├── integral.hpp │ │ │ │ │ │ ├── intel.hpp │ │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ │ ├── nttp.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 │ │ │ │ │ ├── find_if_pred.hpp │ │ │ │ │ ├── fold_impl.hpp │ │ │ │ │ ├── fold_impl_body.hpp │ │ │ │ │ ├── full_lambda.hpp │ │ │ │ │ ├── has_apply.hpp │ │ │ │ │ ├── has_begin.hpp │ │ │ │ │ ├── has_rebind.hpp │ │ │ │ │ ├── has_size.hpp │ │ │ │ │ ├── has_tag.hpp │ │ │ │ │ ├── has_type.hpp │ │ │ │ │ ├── include_preprocessed.hpp │ │ │ │ │ ├── inserter_algorithm.hpp │ │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ │ ├── is_msvc_eti_arg.hpp │ │ │ │ │ ├── iter_apply.hpp │ │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ │ ├── iter_fold_impl.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 │ │ │ │ │ ├── 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 │ │ │ │ │ │ ├── params.hpp │ │ │ │ │ │ ├── partial_spec_params.hpp │ │ │ │ │ │ ├── range.hpp │ │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ │ ├── sub.hpp │ │ │ │ │ │ └── tuple.hpp │ │ │ │ │ ├── push_back_impl.hpp │ │ │ │ │ ├── push_front_impl.hpp │ │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ │ ├── reverse_fold_impl_body.hpp │ │ │ │ │ ├── sequence_wrapper.hpp │ │ │ │ │ ├── size_impl.hpp │ │ │ │ │ ├── static_cast.hpp │ │ │ │ │ ├── template_arity.hpp │ │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ │ ├── traits_lambda_spec.hpp │ │ │ │ │ ├── type_wrapper.hpp │ │ │ │ │ ├── value_wknd.hpp │ │ │ │ │ └── yes_no.hpp │ │ │ │ ├── back_fwd.hpp │ │ │ │ ├── back_inserter.hpp │ │ │ │ ├── begin_end.hpp │ │ │ │ ├── begin_end_fwd.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bool.hpp │ │ │ │ ├── bool_fwd.hpp │ │ │ │ ├── clear.hpp │ │ │ │ ├── clear_fwd.hpp │ │ │ │ ├── contains.hpp │ │ │ │ ├── contains_fwd.hpp │ │ │ │ ├── copy.hpp │ │ │ │ ├── deref.hpp │ │ │ │ ├── distance.hpp │ │ │ │ ├── distance_fwd.hpp │ │ │ │ ├── empty_fwd.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── eval_if.hpp │ │ │ │ ├── find.hpp │ │ │ │ ├── find_if.hpp │ │ │ │ ├── fold.hpp │ │ │ │ ├── front_fwd.hpp │ │ │ │ ├── front_inserter.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── has_xxx.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── inserter.hpp │ │ │ │ ├── int.hpp │ │ │ │ ├── int_fwd.hpp │ │ │ │ ├── integral_c.hpp │ │ │ │ ├── integral_c_fwd.hpp │ │ │ │ ├── integral_c_tag.hpp │ │ │ │ ├── is_placeholder.hpp │ │ │ │ ├── iter_fold.hpp │ │ │ │ ├── iter_fold_if.hpp │ │ │ │ ├── iterator_range.hpp │ │ │ │ ├── iterator_tags.hpp │ │ │ │ ├── lambda.hpp │ │ │ │ ├── lambda_fwd.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── arity.hpp │ │ │ │ │ ├── unrolling.hpp │ │ │ │ │ └── vector.hpp │ │ │ │ ├── logical.hpp │ │ │ │ ├── long.hpp │ │ │ │ ├── long_fwd.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── multiplies.hpp │ │ │ │ ├── negate.hpp │ │ │ │ ├── next.hpp │ │ │ │ ├── next_prior.hpp │ │ │ │ ├── not.hpp │ │ │ │ ├── numeric_cast.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── pair.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── pop_back_fwd.hpp │ │ │ │ ├── pop_front_fwd.hpp │ │ │ │ ├── prior.hpp │ │ │ │ ├── protect.hpp │ │ │ │ ├── push_back.hpp │ │ │ │ ├── push_back_fwd.hpp │ │ │ │ ├── push_front.hpp │ │ │ │ ├── push_front_fwd.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold.hpp │ │ │ │ ├── same_as.hpp │ │ │ │ ├── sequence_tag.hpp │ │ │ │ ├── sequence_tag_fwd.hpp │ │ │ │ ├── size.hpp │ │ │ │ ├── size_fwd.hpp │ │ │ │ ├── size_t.hpp │ │ │ │ ├── size_t_fwd.hpp │ │ │ │ ├── tag.hpp │ │ │ │ ├── times.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 │ │ │ ├── non_type.hpp │ │ │ ├── noncopyable.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 │ │ │ │ │ │ ├── old_numeric_cast.hpp │ │ │ │ │ │ ├── sign_mixture.hpp │ │ │ │ │ │ └── udt_builtin_mixture.hpp │ │ │ │ │ ├── int_float_mixture_enum.hpp │ │ │ │ │ ├── sign_mixture_enum.hpp │ │ │ │ │ └── udt_builtin_mixture_enum.hpp │ │ │ │ └── ublas │ │ │ │ │ ├── detail │ │ │ │ │ ├── config.hpp │ │ │ │ │ ├── definitions.hpp │ │ │ │ │ ├── duff.hpp │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ ├── matrix_assign.hpp │ │ │ │ │ ├── raw.hpp │ │ │ │ │ ├── returntype_deduction.hpp │ │ │ │ │ └── vector_assign.hpp │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── expression_types.hpp │ │ │ │ │ ├── functional.hpp │ │ │ │ │ ├── fwd.hpp │ │ │ │ │ ├── io.hpp │ │ │ │ │ ├── matrix.hpp │ │ │ │ │ ├── matrix_expression.hpp │ │ │ │ │ ├── storage.hpp │ │ │ │ │ ├── traits.hpp │ │ │ │ │ ├── vector.hpp │ │ │ │ │ └── vector_expression.hpp │ │ │ ├── operators.hpp │ │ │ ├── preprocessor │ │ │ │ ├── arithmetic │ │ │ │ │ ├── add.hpp │ │ │ │ │ ├── dec.hpp │ │ │ │ │ ├── inc.hpp │ │ │ │ │ └── sub.hpp │ │ │ │ ├── array │ │ │ │ │ ├── data.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ └── size.hpp │ │ │ │ ├── cat.hpp │ │ │ │ ├── comma_if.hpp │ │ │ │ ├── config │ │ │ │ │ └── config.hpp │ │ │ │ ├── control │ │ │ │ │ ├── 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 │ │ │ │ │ └── error.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── auto_rec.hpp │ │ │ │ │ ├── check.hpp │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── auto_rec.hpp │ │ │ │ │ ├── is_binary.hpp │ │ │ │ │ └── is_unary.hpp │ │ │ │ ├── empty.hpp │ │ │ │ ├── enum.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_params_with_a_default.hpp │ │ │ │ ├── enum_shifted_params.hpp │ │ │ │ ├── expr_if.hpp │ │ │ │ ├── facilities │ │ │ │ │ ├── empty.hpp │ │ │ │ │ ├── identity.hpp │ │ │ │ │ └── intercept.hpp │ │ │ │ ├── identity.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── inc.hpp │ │ │ │ ├── iterate.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 │ │ │ │ ├── list │ │ │ │ │ ├── adt.hpp │ │ │ │ │ ├── append.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── dmc │ │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ │ ├── edg │ │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── fold_right.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── reverse.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── logical │ │ │ │ │ ├── and.hpp │ │ │ │ │ ├── bitand.hpp │ │ │ │ │ ├── bitor.hpp │ │ │ │ │ ├── bool.hpp │ │ │ │ │ ├── compl.hpp │ │ │ │ │ ├── not.hpp │ │ │ │ │ └── or.hpp │ │ │ │ ├── punctuation │ │ │ │ │ ├── comma.hpp │ │ │ │ │ └── comma_if.hpp │ │ │ │ ├── repeat.hpp │ │ │ │ ├── repeat_from_to.hpp │ │ │ │ ├── repetition │ │ │ │ │ ├── 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_shifted_params.hpp │ │ │ │ │ ├── enum_trailing.hpp │ │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ ├── repeat.hpp │ │ │ │ │ └── repeat_from_to.hpp │ │ │ │ ├── seq │ │ │ │ │ ├── cat.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ └── split.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── first_n.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ ├── for_each_i.hpp │ │ │ │ │ ├── rest_n.hpp │ │ │ │ │ ├── seq.hpp │ │ │ │ │ ├── size.hpp │ │ │ │ │ ├── subseq.hpp │ │ │ │ │ └── transform.hpp │ │ │ │ ├── slot │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── counter.hpp │ │ │ │ │ │ ├── def.hpp │ │ │ │ │ │ ├── shared.hpp │ │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ │ └── slot5.hpp │ │ │ │ │ └── slot.hpp │ │ │ │ ├── stringize.hpp │ │ │ │ └── tuple │ │ │ │ │ ├── eat.hpp │ │ │ │ │ ├── elem.hpp │ │ │ │ │ ├── rem.hpp │ │ │ │ │ └── to_list.hpp │ │ │ ├── serialization │ │ │ │ ├── access.hpp │ │ │ │ ├── array.hpp │ │ │ │ ├── base_object.hpp │ │ │ │ ├── collection_size_type.hpp │ │ │ │ ├── force_include.hpp │ │ │ │ ├── is_bitwise_serializable.hpp │ │ │ │ ├── level.hpp │ │ │ │ ├── level_enum.hpp │ │ │ │ ├── nvp.hpp │ │ │ │ ├── pfto.hpp │ │ │ │ ├── serialization.hpp │ │ │ │ ├── split_free.hpp │ │ │ │ ├── split_member.hpp │ │ │ │ ├── strong_typedef.hpp │ │ │ │ ├── tracking.hpp │ │ │ │ ├── tracking_enum.hpp │ │ │ │ ├── traits.hpp │ │ │ │ ├── type_info_implementation.hpp │ │ │ │ ├── void_cast_fwd.hpp │ │ │ │ └── wrapper.hpp │ │ │ ├── shared_array.hpp │ │ │ ├── shared_ptr.hpp │ │ │ ├── smart_ptr │ │ │ │ ├── bad_weak_ptr.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── atomic_count.hpp │ │ │ │ │ ├── atomic_count_gcc.hpp │ │ │ │ │ ├── atomic_count_gcc_x86.hpp │ │ │ │ │ ├── atomic_count_pthreads.hpp │ │ │ │ │ ├── atomic_count_sync.hpp │ │ │ │ │ ├── atomic_count_win32.hpp │ │ │ │ │ ├── lightweight_mutex.hpp │ │ │ │ │ ├── lwm_nop.hpp │ │ │ │ │ ├── lwm_pthreads.hpp │ │ │ │ │ ├── lwm_win32_cs.hpp │ │ │ │ │ ├── operator_bool.hpp │ │ │ │ │ ├── quick_allocator.hpp │ │ │ │ │ ├── shared_array_nmt.hpp │ │ │ │ │ ├── shared_count.hpp │ │ │ │ │ ├── shared_ptr_nmt.hpp │ │ │ │ │ ├── sp_convertible.hpp │ │ │ │ │ ├── sp_counted_base.hpp │ │ │ │ │ ├── sp_counted_base_acc_ia64.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_spin.hpp │ │ │ │ │ ├── sp_counted_base_sync.hpp │ │ │ │ │ ├── sp_counted_base_w32.hpp │ │ │ │ │ ├── sp_counted_impl.hpp │ │ │ │ │ ├── sp_has_sync.hpp │ │ │ │ │ ├── spinlock.hpp │ │ │ │ │ ├── spinlock_gcc_arm.hpp │ │ │ │ │ ├── spinlock_nt.hpp │ │ │ │ │ ├── spinlock_pool.hpp │ │ │ │ │ ├── spinlock_pt.hpp │ │ │ │ │ ├── spinlock_sync.hpp │ │ │ │ │ ├── spinlock_w32.hpp │ │ │ │ │ └── yield_k.hpp │ │ │ │ ├── shared_array.hpp │ │ │ │ └── shared_ptr.hpp │ │ │ ├── static_assert.hpp │ │ │ ├── swap.hpp │ │ │ ├── throw_exception.hpp │ │ │ ├── type.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 │ │ │ │ ├── arithmetic_traits.hpp │ │ │ │ ├── broken_compiler_spec.hpp │ │ │ │ ├── common_type.hpp │ │ │ │ ├── composite_traits.hpp │ │ │ │ ├── conditional.hpp │ │ │ │ ├── config.hpp │ │ │ │ ├── decay.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ │ ├── common_type_imp.hpp │ │ │ │ │ ├── cv_traits_impl.hpp │ │ │ │ │ ├── false_result.hpp │ │ │ │ │ ├── ice_and.hpp │ │ │ │ │ ├── ice_eq.hpp │ │ │ │ │ ├── ice_not.hpp │ │ │ │ │ ├── ice_or.hpp │ │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ │ ├── size_t_trait_def.hpp │ │ │ │ │ ├── size_t_trait_undef.hpp │ │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ │ ├── type_trait_def.hpp │ │ │ │ │ ├── type_trait_undef.hpp │ │ │ │ │ ├── wrap.hpp │ │ │ │ │ └── yes_no_type.hpp │ │ │ │ ├── extent.hpp │ │ │ │ ├── floating_point_promotion.hpp │ │ │ │ ├── function_traits.hpp │ │ │ │ ├── has_new_operator.hpp │ │ │ │ ├── has_nothrow_assign.hpp │ │ │ │ ├── has_nothrow_constructor.hpp │ │ │ │ ├── has_nothrow_copy.hpp │ │ │ │ ├── has_nothrow_destructor.hpp │ │ │ │ ├── has_trivial_assign.hpp │ │ │ │ ├── has_trivial_constructor.hpp │ │ │ │ ├── has_trivial_copy.hpp │ │ │ │ ├── has_trivial_destructor.hpp │ │ │ │ ├── has_virtual_destructor.hpp │ │ │ │ ├── ice.hpp │ │ │ │ ├── integral_constant.hpp │ │ │ │ ├── integral_promotion.hpp │ │ │ │ ├── intrinsics.hpp │ │ │ │ ├── is_abstract.hpp │ │ │ │ ├── is_arithmetic.hpp │ │ │ │ ├── is_array.hpp │ │ │ │ ├── is_base_and_derived.hpp │ │ │ │ ├── is_base_of.hpp │ │ │ │ ├── is_class.hpp │ │ │ │ ├── is_complex.hpp │ │ │ │ ├── is_compound.hpp │ │ │ │ ├── is_const.hpp │ │ │ │ ├── is_convertible.hpp │ │ │ │ ├── is_empty.hpp │ │ │ │ ├── is_enum.hpp │ │ │ │ ├── is_float.hpp │ │ │ │ ├── is_floating_point.hpp │ │ │ │ ├── is_function.hpp │ │ │ │ ├── is_fundamental.hpp │ │ │ │ ├── is_integral.hpp │ │ │ │ ├── is_lvalue_reference.hpp │ │ │ │ ├── is_member_function_pointer.hpp │ │ │ │ ├── is_member_object_pointer.hpp │ │ │ │ ├── is_member_pointer.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 │ │ │ │ ├── msvc │ │ │ │ │ ├── remove_all_extents.hpp │ │ │ │ │ ├── remove_bounds.hpp │ │ │ │ │ ├── remove_const.hpp │ │ │ │ │ ├── remove_cv.hpp │ │ │ │ │ ├── remove_extent.hpp │ │ │ │ │ ├── remove_pointer.hpp │ │ │ │ │ ├── remove_reference.hpp │ │ │ │ │ ├── remove_volatile.hpp │ │ │ │ │ └── typeof.hpp │ │ │ │ ├── promote.hpp │ │ │ │ ├── rank.hpp │ │ │ │ ├── remove_all_extents.hpp │ │ │ │ ├── remove_bounds.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_extent.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ ├── remove_volatile.hpp │ │ │ │ └── type_with_alignment.hpp │ │ │ ├── typeof │ │ │ │ ├── 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 │ │ │ ├── utility │ │ │ │ ├── declval.hpp │ │ │ │ ├── enable_if.hpp │ │ │ │ └── swap.hpp │ │ │ └── version.hpp │ │ └── libs │ │ │ └── smart_ptr │ │ │ └── src │ │ │ ├── sp_collector.cpp │ │ │ └── sp_debug_hooks.cpp │ ├── calculateFDRs │ ├── calculateFDRsForAlignment.cpp │ ├── calculateFDRsForAlignment.h │ ├── calculateFDRs_background │ ├── collapseRedundantNodes.cpp │ ├── collapseRedundantNodes.h │ ├── graph.h │ ├── makefile │ ├── ontologyTermStats.cpp │ ├── removalList.h │ ├── replace_words_using_dicts.pl │ ├── test │ │ ├── alignment.out │ │ ├── computed_ont.txt │ │ ├── ref_ont.txt │ │ └── test_alignment_results_correct │ │ │ ├── FDRs │ │ │ ├── alignment.out │ │ │ ├── alignment_without_descendents │ │ │ ├── all_genes │ │ │ └── rand_files │ │ │ ├── alignment_0 │ │ │ ├── alignment_1 │ │ │ ├── alignment_10 │ │ │ ├── alignment_11 │ │ │ ├── alignment_12 │ │ │ ├── alignment_13 │ │ │ ├── alignment_14 │ │ │ ├── alignment_15 │ │ │ ├── alignment_16 │ │ │ ├── alignment_17 │ │ │ ├── alignment_18 │ │ │ ├── alignment_19 │ │ │ ├── alignment_2 │ │ │ ├── alignment_20 │ │ │ ├── alignment_21 │ │ │ ├── alignment_22 │ │ │ ├── alignment_23 │ │ │ ├── alignment_24 │ │ │ ├── alignment_25 │ │ │ ├── alignment_26 │ │ │ ├── alignment_27 │ │ │ ├── alignment_28 │ │ │ ├── alignment_29 │ │ │ ├── alignment_3 │ │ │ ├── alignment_4 │ │ │ ├── alignment_5 │ │ │ ├── alignment_6 │ │ │ ├── alignment_7 │ │ │ ├── alignment_8 │ │ │ ├── alignment_9 │ │ │ ├── alignment_without_descendents_0 │ │ │ ├── alignment_without_descendents_1 │ │ │ ├── alignment_without_descendents_10 │ │ │ ├── alignment_without_descendents_11 │ │ │ ├── alignment_without_descendents_12 │ │ │ ├── alignment_without_descendents_13 │ │ │ ├── alignment_without_descendents_14 │ │ │ ├── alignment_without_descendents_15 │ │ │ ├── alignment_without_descendents_16 │ │ │ ├── alignment_without_descendents_17 │ │ │ ├── alignment_without_descendents_18 │ │ │ ├── alignment_without_descendents_19 │ │ │ ├── alignment_without_descendents_2 │ │ │ ├── alignment_without_descendents_20 │ │ │ ├── alignment_without_descendents_21 │ │ │ ├── alignment_without_descendents_22 │ │ │ ├── alignment_without_descendents_23 │ │ │ ├── alignment_without_descendents_24 │ │ │ ├── alignment_without_descendents_25 │ │ │ ├── alignment_without_descendents_26 │ │ │ ├── alignment_without_descendents_27 │ │ │ ├── alignment_without_descendents_28 │ │ │ ├── alignment_without_descendents_29 │ │ │ ├── alignment_without_descendents_3 │ │ │ ├── alignment_without_descendents_4 │ │ │ ├── alignment_without_descendents_5 │ │ │ ├── alignment_without_descendents_6 │ │ │ ├── alignment_without_descendents_7 │ │ │ ├── alignment_without_descendents_8 │ │ │ ├── alignment_without_descendents_9 │ │ │ ├── rand_dict_0 │ │ │ ├── rand_dict_1 │ │ │ ├── rand_dict_10 │ │ │ ├── rand_dict_11 │ │ │ ├── rand_dict_12 │ │ │ ├── rand_dict_13 │ │ │ ├── rand_dict_14 │ │ │ ├── rand_dict_15 │ │ │ ├── rand_dict_16 │ │ │ ├── rand_dict_17 │ │ │ ├── rand_dict_18 │ │ │ ├── rand_dict_19 │ │ │ ├── rand_dict_2 │ │ │ ├── rand_dict_20 │ │ │ ├── rand_dict_21 │ │ │ ├── rand_dict_22 │ │ │ ├── rand_dict_23 │ │ │ ├── rand_dict_24 │ │ │ ├── rand_dict_25 │ │ │ ├── rand_dict_26 │ │ │ ├── rand_dict_27 │ │ │ ├── rand_dict_28 │ │ │ ├── rand_dict_29 │ │ │ ├── rand_dict_3 │ │ │ ├── rand_dict_4 │ │ │ ├── rand_dict_5 │ │ │ ├── rand_dict_6 │ │ │ ├── rand_dict_7 │ │ │ ├── rand_dict_8 │ │ │ ├── rand_dict_9 │ │ │ ├── rand_ont_0 │ │ │ ├── rand_ont_1 │ │ │ ├── rand_ont_10 │ │ │ ├── rand_ont_11 │ │ │ ├── rand_ont_12 │ │ │ ├── rand_ont_13 │ │ │ ├── rand_ont_14 │ │ │ ├── rand_ont_15 │ │ │ ├── rand_ont_16 │ │ │ ├── rand_ont_17 │ │ │ ├── rand_ont_18 │ │ │ ├── rand_ont_19 │ │ │ ├── rand_ont_2 │ │ │ ├── rand_ont_20 │ │ │ ├── rand_ont_21 │ │ │ ├── rand_ont_22 │ │ │ ├── rand_ont_23 │ │ │ ├── rand_ont_24 │ │ │ ├── rand_ont_25 │ │ │ ├── rand_ont_26 │ │ │ ├── rand_ont_27 │ │ │ ├── rand_ont_28 │ │ │ ├── rand_ont_29 │ │ │ ├── rand_ont_3 │ │ │ ├── rand_ont_4 │ │ │ ├── rand_ont_5 │ │ │ ├── rand_ont_6 │ │ │ ├── rand_ont_7 │ │ │ ├── rand_ont_8 │ │ │ └── rand_ont_9 │ └── util.h ├── clixo_0.3 │ ├── LICENSE │ ├── README │ ├── boost.h │ ├── boost │ │ ├── LICENSE_1_0.txt │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── no_tr1 │ │ │ │ ├── cmath.hpp │ │ │ │ ├── complex.hpp │ │ │ │ ├── functional.hpp │ │ │ │ ├── memory.hpp │ │ │ │ └── utility.hpp │ │ │ ├── platform │ │ │ │ ├── aix.hpp │ │ │ │ ├── amigaos.hpp │ │ │ │ ├── beos.hpp │ │ │ │ ├── bsd.hpp │ │ │ │ ├── cygwin.hpp │ │ │ │ ├── hpux.hpp │ │ │ │ ├── irix.hpp │ │ │ │ ├── linux.hpp │ │ │ │ ├── macos.hpp │ │ │ │ ├── qnxnto.hpp │ │ │ │ ├── solaris.hpp │ │ │ │ ├── symbian.hpp │ │ │ │ ├── vms.hpp │ │ │ │ ├── vxworks.hpp │ │ │ │ └── win32.hpp │ │ │ ├── posix_features.hpp │ │ │ ├── requires_threads.hpp │ │ │ ├── select_compiler_config.hpp │ │ │ ├── select_platform_config.hpp │ │ │ ├── select_stdlib_config.hpp │ │ │ ├── stdlib │ │ │ │ ├── dinkumware.hpp │ │ │ │ ├── libcomo.hpp │ │ │ │ ├── libcpp.hpp │ │ │ │ ├── libstdcpp3.hpp │ │ │ │ ├── modena.hpp │ │ │ │ ├── msl.hpp │ │ │ │ ├── roguewave.hpp │ │ │ │ ├── sgi.hpp │ │ │ │ ├── stlport.hpp │ │ │ │ └── vacpp.hpp │ │ │ ├── suffix.hpp │ │ │ ├── user.hpp │ │ │ └── warning_disable.hpp │ │ ├── detail │ │ │ ├── dynamic_bitset.hpp │ │ │ ├── endian.hpp │ │ │ ├── iterator.hpp │ │ │ ├── limits.hpp │ │ │ └── workaround.hpp │ │ ├── dynamic_bitset │ │ │ ├── config.hpp │ │ │ └── dynamic_bitset.hpp │ │ ├── dynamic_bitset_fwd.hpp │ │ ├── limits.hpp │ │ ├── mpl │ │ │ ├── aux_ │ │ │ │ ├── adl_barrier.hpp │ │ │ │ ├── arity.hpp │ │ │ │ ├── config │ │ │ │ │ ├── adl.hpp │ │ │ │ │ ├── arrays.hpp │ │ │ │ │ ├── ctps.hpp │ │ │ │ │ ├── dtp.hpp │ │ │ │ │ ├── eti.hpp │ │ │ │ │ ├── gcc.hpp │ │ │ │ │ ├── has_xxx.hpp │ │ │ │ │ ├── integral.hpp │ │ │ │ │ ├── intel.hpp │ │ │ │ │ ├── lambda.hpp │ │ │ │ │ ├── msvc.hpp │ │ │ │ │ ├── msvc_typename.hpp │ │ │ │ │ ├── nttp.hpp │ │ │ │ │ ├── overload_resolution.hpp │ │ │ │ │ ├── preprocessor.hpp │ │ │ │ │ ├── static_constant.hpp │ │ │ │ │ ├── ttp.hpp │ │ │ │ │ └── workaround.hpp │ │ │ │ ├── integral_wrapper.hpp │ │ │ │ ├── lambda_arity_param.hpp │ │ │ │ ├── lambda_support.hpp │ │ │ │ ├── na.hpp │ │ │ │ ├── na_fwd.hpp │ │ │ │ ├── na_spec.hpp │ │ │ │ ├── nttp_decl.hpp │ │ │ │ ├── preprocessor │ │ │ │ │ ├── def_params_tail.hpp │ │ │ │ │ ├── enum.hpp │ │ │ │ │ ├── filter_params.hpp │ │ │ │ │ ├── params.hpp │ │ │ │ │ ├── sub.hpp │ │ │ │ │ └── tuple.hpp │ │ │ │ ├── static_cast.hpp │ │ │ │ ├── template_arity_fwd.hpp │ │ │ │ ├── type_wrapper.hpp │ │ │ │ ├── value_wknd.hpp │ │ │ │ └── yes_no.hpp │ │ │ ├── bool.hpp │ │ │ ├── bool_fwd.hpp │ │ │ ├── has_xxx.hpp │ │ │ ├── if.hpp │ │ │ ├── int.hpp │ │ │ ├── int_fwd.hpp │ │ │ ├── integral_c.hpp │ │ │ ├── integral_c_fwd.hpp │ │ │ ├── integral_c_tag.hpp │ │ │ ├── lambda_fwd.hpp │ │ │ ├── limits │ │ │ │ └── arity.hpp │ │ │ └── void_fwd.hpp │ │ ├── non_type.hpp │ │ ├── pending │ │ │ ├── integer_log2.hpp │ │ │ └── lowest_bit.hpp │ │ ├── preprocessor │ │ │ ├── arithmetic │ │ │ │ ├── add.hpp │ │ │ │ ├── dec.hpp │ │ │ │ ├── inc.hpp │ │ │ │ └── sub.hpp │ │ │ ├── array │ │ │ │ ├── data.hpp │ │ │ │ ├── elem.hpp │ │ │ │ └── size.hpp │ │ │ ├── cat.hpp │ │ │ ├── comma_if.hpp │ │ │ ├── config │ │ │ │ └── config.hpp │ │ │ ├── control │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── while.hpp │ │ │ │ │ ├── msvc │ │ │ │ │ │ └── while.hpp │ │ │ │ │ └── while.hpp │ │ │ │ ├── expr_iif.hpp │ │ │ │ ├── if.hpp │ │ │ │ ├── iif.hpp │ │ │ │ └── while.hpp │ │ │ ├── debug │ │ │ │ └── error.hpp │ │ │ ├── detail │ │ │ │ ├── auto_rec.hpp │ │ │ │ ├── check.hpp │ │ │ │ ├── dmc │ │ │ │ │ └── auto_rec.hpp │ │ │ │ └── is_binary.hpp │ │ │ ├── empty.hpp │ │ │ ├── enum_params.hpp │ │ │ ├── facilities │ │ │ │ ├── empty.hpp │ │ │ │ └── identity.hpp │ │ │ ├── identity.hpp │ │ │ ├── inc.hpp │ │ │ ├── iterate.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 │ │ │ ├── list │ │ │ │ ├── adt.hpp │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── fold_left.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ │ └── fold_right.hpp │ │ │ │ │ ├── fold_left.hpp │ │ │ │ │ └── fold_right.hpp │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ ├── for_each_i.hpp │ │ │ │ └── reverse.hpp │ │ │ ├── logical │ │ │ │ ├── and.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bool.hpp │ │ │ │ └── compl.hpp │ │ │ ├── punctuation │ │ │ │ ├── comma.hpp │ │ │ │ └── comma_if.hpp │ │ │ ├── repeat.hpp │ │ │ ├── repetition │ │ │ │ ├── detail │ │ │ │ │ ├── dmc │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── edg │ │ │ │ │ │ └── for.hpp │ │ │ │ │ ├── for.hpp │ │ │ │ │ └── msvc │ │ │ │ │ │ └── for.hpp │ │ │ │ ├── enum_params.hpp │ │ │ │ ├── enum_trailing_params.hpp │ │ │ │ ├── for.hpp │ │ │ │ └── repeat.hpp │ │ │ ├── slot │ │ │ │ ├── detail │ │ │ │ │ ├── counter.hpp │ │ │ │ │ ├── def.hpp │ │ │ │ │ ├── shared.hpp │ │ │ │ │ ├── slot1.hpp │ │ │ │ │ ├── slot2.hpp │ │ │ │ │ ├── slot3.hpp │ │ │ │ │ ├── slot4.hpp │ │ │ │ │ └── slot5.hpp │ │ │ │ └── slot.hpp │ │ │ └── tuple │ │ │ │ ├── eat.hpp │ │ │ │ ├── elem.hpp │ │ │ │ ├── rem.hpp │ │ │ │ └── to_list.hpp │ │ ├── static_assert.hpp │ │ ├── type.hpp │ │ ├── type_traits │ │ │ ├── add_reference.hpp │ │ │ ├── add_rvalue_reference.hpp │ │ │ ├── broken_compiler_spec.hpp │ │ │ ├── config.hpp │ │ │ ├── detail │ │ │ │ ├── bool_trait_def.hpp │ │ │ │ ├── bool_trait_undef.hpp │ │ │ │ ├── cv_traits_impl.hpp │ │ │ │ ├── false_result.hpp │ │ │ │ ├── ice_and.hpp │ │ │ │ ├── ice_eq.hpp │ │ │ │ ├── ice_not.hpp │ │ │ │ ├── ice_or.hpp │ │ │ │ ├── is_function_ptr_helper.hpp │ │ │ │ ├── is_function_ptr_tester.hpp │ │ │ │ ├── is_mem_fun_pointer_impl.hpp │ │ │ │ ├── is_mem_fun_pointer_tester.hpp │ │ │ │ ├── template_arity_spec.hpp │ │ │ │ ├── type_trait_def.hpp │ │ │ │ ├── type_trait_undef.hpp │ │ │ │ ├── wrap.hpp │ │ │ │ └── yes_no_type.hpp │ │ │ ├── ice.hpp │ │ │ ├── integral_constant.hpp │ │ │ ├── intrinsics.hpp │ │ │ ├── is_abstract.hpp │ │ │ ├── is_arithmetic.hpp │ │ │ ├── is_array.hpp │ │ │ ├── is_base_and_derived.hpp │ │ │ ├── is_class.hpp │ │ │ ├── is_const.hpp │ │ │ ├── is_convertible.hpp │ │ │ ├── is_enum.hpp │ │ │ ├── is_float.hpp │ │ │ ├── is_function.hpp │ │ │ ├── is_integral.hpp │ │ │ ├── is_lvalue_reference.hpp │ │ │ ├── is_member_function_pointer.hpp │ │ │ ├── is_member_pointer.hpp │ │ │ ├── is_pointer.hpp │ │ │ ├── is_polymorphic.hpp │ │ │ ├── is_reference.hpp │ │ │ ├── is_rvalue_reference.hpp │ │ │ ├── is_same.hpp │ │ │ ├── is_scalar.hpp │ │ │ ├── is_union.hpp │ │ │ ├── is_void.hpp │ │ │ ├── is_volatile.hpp │ │ │ ├── msvc │ │ │ │ ├── remove_bounds.hpp │ │ │ │ ├── remove_const.hpp │ │ │ │ ├── remove_cv.hpp │ │ │ │ ├── remove_pointer.hpp │ │ │ │ ├── remove_reference.hpp │ │ │ │ └── typeof.hpp │ │ │ ├── remove_bounds.hpp │ │ │ ├── remove_const.hpp │ │ │ ├── remove_cv.hpp │ │ │ ├── remove_pointer.hpp │ │ │ └── remove_reference.hpp │ │ └── version.hpp │ ├── clixo.cpp │ ├── clustersToDAG.cpp │ ├── corrector.h │ ├── dag.h │ ├── dagConstruct.h │ ├── example │ │ ├── exampleInput │ │ ├── exampleOutput │ │ ├── exampleOutputOnt │ │ ├── exampleOutputOntStats │ │ ├── examplePeek │ │ └── examplePeek_clusts.txt │ ├── extractOnt │ ├── extractOnt_leaves │ ├── graph_undirected.h │ ├── graph_undirected_bitset.h │ ├── makefile │ ├── nodeDistanceObject.h │ ├── ontologyTermStats │ └── util.h ├── config.py ├── ontology_style.cx ├── passthrough_style.cx ├── site.cfg └── utils.py ├── docker ├── Dockerfile-anaconda2 ├── Dockerfile-anaconda3 ├── build_docker.sh └── push_docker.sh ├── docs ├── Makefile ├── conf.py ├── fango.png ├── index.rst ├── install.rst ├── intro.rst ├── make.bat ├── ontology.rst ├── requirements.txt ├── software_pipeline_1dec2017.png ├── software_pipeline_23jan2018.png ├── software_pipeline_6jul2017.png ├── toy_ontology.ai ├── toy_ontology.png ├── toy_ontology_S1.ai ├── toy_ontology_S1.png ├── toy_ontology_alignment.ai ├── toy_ontology_alignment.png ├── toy_ontology_dag2tree.ai ├── toy_ontology_dag2tree.png ├── toy_ontology_delete_not_transitive.ai ├── toy_ontology_delete_not_transitive.png ├── toy_ontology_delete_transitive.ai ├── toy_ontology_delete_transitive.png ├── toy_ontology_propagate_gene_term.ai ├── toy_ontology_propagate_gene_term.png ├── toy_ontology_propagate_term_term.ai ├── toy_ontology_propagate_term_term.png ├── toy_ontology_spanning_tree.ai ├── toy_ontology_spanning_tree.png ├── tutorial.rst └── utils.rst ├── examples ├── Load_example_datasets.ipynb ├── Make_disease_gene_ontologies.ipynb ├── Process_the_Gene_Ontology.ipynb ├── Tutorial.ipynb └── disease_gene_ontologies.txt ├── makefile ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/README.md -------------------------------------------------------------------------------- /ddot/Ontology.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/Ontology.py -------------------------------------------------------------------------------- /ddot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/__init__.py -------------------------------------------------------------------------------- /ddot/alignOntology/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/LICENSE -------------------------------------------------------------------------------- /ddot/alignOntology/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/README -------------------------------------------------------------------------------- /ddot/alignOntology/alignOntology.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/alignOntology.cpp -------------------------------------------------------------------------------- /ddot/alignOntology/alignmentUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/alignmentUtils.cpp -------------------------------------------------------------------------------- /ddot/alignOntology/alignmentUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/alignmentUtils.h -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/LICENSE_1_0.txt -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/aligned_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/aligned_storage.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/array.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/assert.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/call_traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/checked_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/checked_delete.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/suffix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/user.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/current_function.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/call_traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/endian.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/interlocked.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/interlocked.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/lcast_precision.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/lcast_precision.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/lightweight_mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/lightweight_mutex.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/limits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/ob_call_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/ob_call_traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/sp_typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/sp_typeinfo.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/exception/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/exception/exception.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/integer_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/integer_traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/iterator.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/lexical_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/lexical_cast.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/limits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/memory_order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/memory_order.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/always.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/and.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/at.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/O1_size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/O1_size_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/advance_forward.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/advance_forward.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arg_typedef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arg_typedef.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arithmetic_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arithmetic_op.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/arity_spec.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/begin_end_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/begin_end_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/clear_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/clear_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/comparison_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/comparison_op.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/bcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/bcc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/bind.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/compiler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/compiler.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/has_xxx.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/integral.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/config/typeof.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/contains_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/contains_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/count_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/count_args.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/find_if_pred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/find_if_pred.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/fold_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/fold_impl_body.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/fold_impl_body.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/full_lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/full_lambda.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_apply.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_begin.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_rebind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_rebind.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/is_msvc_eti_arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/is_msvc_eti_arg.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/iter_apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/iter_apply.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/iter_fold_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/iter_fold_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_no_ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_no_ctps.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_spec.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/largest_int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/largest_int.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/logical_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/logical_op.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_eti_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_eti_base.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_is_class.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_never_true.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_never_true.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/msvc_type.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_assert.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/numeric_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/numeric_op.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/push_back_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/push_back_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/push_front_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/push_front_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/size_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/size_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/template_arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/template_arity.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/type_wrapper.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/contains_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/contains_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/find.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/front_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/front_inserter.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/int.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/is_placeholder.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/is_placeholder.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/iterator_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/iterator_range.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/less.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/limits/unrolling.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/limits/unrolling.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/long.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/next.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/not.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/or.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/push_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/push_front_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/sequence_tag_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/sequence_tag_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/times.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/O1_size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/at.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/back.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/clear.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/empty.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/front.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/item.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/iterator.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/numbered.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/numbered.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/pop_back.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/tag.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/vector0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/aux_/vector0.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector0.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector0_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector10.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector10_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector20.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector20_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector30.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector30_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector40.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector40_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector50.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/vector/vector50_c.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/void.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/non_type.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/noncopyable.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/conversion/cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/conversion/cast.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/detail/raw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/detail/raw.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/exception.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/functional.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/fwd.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/io.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/io.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/matrix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/matrix.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/storage.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/numeric/ublas/vector.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/operators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/operators.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/expr_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/expr_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/list/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/list/append.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/not.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/logical/or.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/cat.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/elem.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/enum.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/first_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/first_n.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/rest_n.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/rest_n.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/seq.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/size.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/subseq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/seq/subseq.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/stringize.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/stringize.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/access.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/access.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/array.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/level.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/level.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/level_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/level_enum.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/nvp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/nvp.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/pfto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/pfto.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/split_free.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/split_free.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/tracking.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/tracking.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/serialization/wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/serialization/wrapper.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/shared_array.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/shared_ptr.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/smart_ptr/bad_weak_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/smart_ptr/bad_weak_ptr.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/smart_ptr/detail/lwm_nop.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/smart_ptr/detail/lwm_nop.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/smart_ptr/detail/yield_k.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/smart_ptr/detail/yield_k.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/smart_ptr/shared_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/smart_ptr/shared_array.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/smart_ptr/shared_ptr.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/smart_ptr/shared_ptr.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/static_assert.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/swap.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/throw_exception.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/add_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/add_const.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/add_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/add_cv.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/add_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/add_pointer.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/add_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/add_volatile.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/alignment_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/alignment_of.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/common_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/common_type.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/conditional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/conditional.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/detail/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/detail/wrap.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/extent.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/extent.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_base_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_base_of.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_complex.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_compound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_compound.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_empty.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_float.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_object.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_pod.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_pod.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_signed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_signed.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_stateless.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_stateless.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_unsigned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_unsigned.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/make_signed.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/make_signed.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/msvc/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/msvc/typeof.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/promote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/promote.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/dmc/typeof_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/dmc/typeof_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/encode_decode.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/encode_decode.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/int_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/int_encoding.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/message.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/modifiers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/modifiers.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/msvc/typeof_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/msvc/typeof_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/native.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/native.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/template_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/template_encoding.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/type_encoding.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/type_encoding.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/typeof.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/typeof_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/typeof_impl.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/unsupported.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/unsupported.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/vector.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/vector100.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/vector100.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/vector150.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/vector150.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/vector200.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/vector200.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/typeof/vector50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/typeof/vector50.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/utility/declval.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/utility/swap.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/boost_1_47_0/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/boost_1_47_0/boost/version.hpp -------------------------------------------------------------------------------- /ddot/alignOntology/calculateFDRs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/calculateFDRs -------------------------------------------------------------------------------- /ddot/alignOntology/calculateFDRsForAlignment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/calculateFDRsForAlignment.cpp -------------------------------------------------------------------------------- /ddot/alignOntology/calculateFDRsForAlignment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/calculateFDRsForAlignment.h -------------------------------------------------------------------------------- /ddot/alignOntology/calculateFDRs_background: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/calculateFDRs_background -------------------------------------------------------------------------------- /ddot/alignOntology/collapseRedundantNodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/collapseRedundantNodes.cpp -------------------------------------------------------------------------------- /ddot/alignOntology/collapseRedundantNodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/collapseRedundantNodes.h -------------------------------------------------------------------------------- /ddot/alignOntology/graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/graph.h -------------------------------------------------------------------------------- /ddot/alignOntology/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/makefile -------------------------------------------------------------------------------- /ddot/alignOntology/ontologyTermStats.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/ontologyTermStats.cpp -------------------------------------------------------------------------------- /ddot/alignOntology/removalList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/removalList.h -------------------------------------------------------------------------------- /ddot/alignOntology/replace_words_using_dicts.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/replace_words_using_dicts.pl -------------------------------------------------------------------------------- /ddot/alignOntology/test/alignment.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/test/alignment.out -------------------------------------------------------------------------------- /ddot/alignOntology/test/computed_ont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/test/computed_ont.txt -------------------------------------------------------------------------------- /ddot/alignOntology/test/ref_ont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/test/ref_ont.txt -------------------------------------------------------------------------------- /ddot/alignOntology/test/test_alignment_results_correct/FDRs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/test/test_alignment_results_correct/FDRs -------------------------------------------------------------------------------- /ddot/alignOntology/test/test_alignment_results_correct/all_genes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/test/test_alignment_results_correct/all_genes -------------------------------------------------------------------------------- /ddot/alignOntology/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/alignOntology/util.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/LICENSE -------------------------------------------------------------------------------- /ddot/clixo_0.3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/README -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/LICENSE_1_0.txt -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi/borland_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi/borland_prefix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi/borland_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi/borland_suffix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi/msvc_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi/msvc_prefix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi/msvc_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi/msvc_suffix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/borland.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/borland.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/clang.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/clang.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/codegear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/codegear.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/comeau.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/comeau.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/common_edg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/common_edg.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/compaq_cxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/compaq_cxx.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/digitalmars.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/digitalmars.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/gcc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/gcc_xml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/gcc_xml.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/greenhills.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/greenhills.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/hp_acc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/hp_acc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/intel.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/kai.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/kai.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/metrowerks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/metrowerks.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/mpw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/mpw.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/nvcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/nvcc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/pathscale.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/pathscale.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/pgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/pgi.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/sgi_mipspro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/sgi_mipspro.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/sunpro_cc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/sunpro_cc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/vacpp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/compiler/visualc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/compiler/visualc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/no_tr1/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/no_tr1/cmath.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/no_tr1/complex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/no_tr1/complex.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/no_tr1/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/no_tr1/functional.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/no_tr1/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/no_tr1/memory.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/no_tr1/utility.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/no_tr1/utility.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/aix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/aix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/amigaos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/amigaos.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/beos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/beos.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/bsd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/bsd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/cygwin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/cygwin.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/hpux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/hpux.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/irix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/irix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/linux.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/linux.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/macos.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/macos.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/qnxnto.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/qnxnto.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/solaris.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/solaris.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/symbian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/symbian.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/vms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/vms.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/vxworks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/vxworks.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/platform/win32.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/platform/win32.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/posix_features.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/posix_features.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/requires_threads.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/requires_threads.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/select_compiler_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/select_compiler_config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/select_platform_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/select_platform_config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/select_stdlib_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/select_stdlib_config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/dinkumware.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/dinkumware.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/libcomo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/libcomo.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/libcpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/libcpp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/libstdcpp3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/libstdcpp3.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/modena.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/modena.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/roguewave.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/roguewave.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/stlport.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/stlport.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/stdlib/vacpp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/stdlib/vacpp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/suffix.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/user.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/config/warning_disable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/config/warning_disable.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/detail/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/detail/dynamic_bitset.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/detail/endian.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/detail/endian.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/detail/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/detail/limits.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/dynamic_bitset/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/dynamic_bitset/config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/dynamic_bitset/dynamic_bitset.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/dynamic_bitset/dynamic_bitset.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/dynamic_bitset_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/dynamic_bitset_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/limits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/limits.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/adl_barrier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/adl_barrier.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/adl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/adl.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/arrays.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/arrays.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/ctps.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/ctps.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/dtp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/dtp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/eti.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/eti.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/gcc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/gcc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/has_xxx.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/integral.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/intel.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/intel.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/lambda.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/msvc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/msvc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/msvc_typename.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/msvc_typename.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/nttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/nttp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/overload_resolution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/overload_resolution.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/preprocessor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/preprocessor.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/static_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/static_constant.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/ttp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/ttp.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/config/workaround.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/integral_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/integral_wrapper.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/lambda_arity_param.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/lambda_arity_param.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/lambda_support.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/lambda_support.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/nttp_decl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/nttp_decl.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/def_params_tail.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/def_params_tail.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/enum.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/filter_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/filter_params.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/params.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/sub.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/preprocessor/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/preprocessor/tuple.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/static_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/static_cast.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/template_arity_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/template_arity_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/type_wrapper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/type_wrapper.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/value_wknd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/value_wknd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/if.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/int.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/integral_c_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/integral_c_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/integral_c_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/integral_c_tag.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/non_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/non_type.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/pending/integer_log2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/pending/integer_log2.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/pending/lowest_bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/pending/lowest_bit.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/arithmetic/add.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/arithmetic/add.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/arithmetic/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/arithmetic/dec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/arithmetic/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/arithmetic/inc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/arithmetic/sub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/arithmetic/sub.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/array/data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/array/data.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/array/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/array/elem.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/array/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/array/size.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/comma_if.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/config/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/config/config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/detail/dmc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/detail/dmc/while.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/detail/edg/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/detail/edg/while.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/detail/msvc/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/detail/msvc/while.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/detail/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/detail/while.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/expr_iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/expr_iif.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/if.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/iif.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/iif.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/control/while.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/control/while.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/debug/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/debug/error.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/detail/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/detail/auto_rec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/detail/check.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/detail/check.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/detail/dmc/auto_rec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/detail/dmc/auto_rec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/detail/is_binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/detail/is_binary.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/empty.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/enum_params.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/facilities/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/facilities/empty.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/facilities/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/facilities/identity.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/identity.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iterate.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/detail/finish.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/detail/finish.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/detail/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/detail/local.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/detail/rlocal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/detail/rlocal.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/detail/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/detail/self.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/detail/start.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/detail/start.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/iterate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/iterate.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/local.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/local.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/iteration/self.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/iteration/self.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/adt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/adt.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/detail/dmc/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/detail/dmc/fold_left.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/detail/edg/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/detail/edg/fold_left.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/detail/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/detail/fold_left.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/detail/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/detail/fold_right.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/fold_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/fold_left.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/fold_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/fold_right.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/for_each_i.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/for_each_i.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/list/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/list/reverse.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/logical/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/logical/and.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/logical/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/logical/bitand.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/logical/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/logical/bool.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/logical/compl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/logical/compl.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/punctuation/comma.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/punctuation/comma.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/punctuation/comma_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/punctuation/comma_if.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repeat.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/detail/dmc/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/detail/dmc/for.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/detail/edg/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/detail/edg/for.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/detail/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/detail/for.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/enum_params.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/enum_params.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/for.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/repetition/repeat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/repetition/repeat.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/counter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/counter.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/def.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/shared.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/slot1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/slot1.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/slot2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/slot2.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/slot3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/slot3.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/slot4.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/slot4.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/detail/slot5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/detail/slot5.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/slot/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/slot/slot.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/tuple/eat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/tuple/eat.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/tuple/elem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/tuple/elem.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/tuple/rem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/tuple/rem.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/preprocessor/tuple/to_list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/preprocessor/tuple/to_list.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/static_assert.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/add_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/add_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/add_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/add_rvalue_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/broken_compiler_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/broken_compiler_spec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/config.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/bool_trait_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/bool_trait_def.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/bool_trait_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/bool_trait_undef.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/cv_traits_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/cv_traits_impl.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/false_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/false_result.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/ice_and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/ice_and.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/ice_eq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/ice_eq.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/ice_not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/ice_not.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/ice_or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/ice_or.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/template_arity_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/template_arity_spec.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/type_trait_def.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/type_trait_def.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/type_trait_undef.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/type_trait_undef.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/wrap.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/detail/yes_no_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/detail/yes_no_type.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/integral_constant.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/integral_constant.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/intrinsics.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/intrinsics.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_abstract.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_abstract.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_arithmetic.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_array.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_base_and_derived.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_base_and_derived.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_class.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_class.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_const.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_convertible.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_convertible.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_enum.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_float.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_float.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_function.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_integral.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_integral.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_lvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_lvalue_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_member_function_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_member_function_pointer.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_member_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_member_pointer.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_pointer.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_polymorphic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_polymorphic.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_rvalue_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_rvalue_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_same.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_scalar.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_union.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_union.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_void.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/is_volatile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/is_volatile.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/remove_bounds.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/remove_const.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/remove_cv.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/remove_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/remove_pointer.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/remove_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/msvc/typeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/msvc/typeof.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/remove_bounds.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/remove_bounds.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/remove_const.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/remove_const.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/remove_cv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/remove_cv.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/remove_pointer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/remove_pointer.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/type_traits/remove_reference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/type_traits/remove_reference.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/boost/version.hpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/clixo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/clixo.cpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/clustersToDAG.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/clustersToDAG.cpp -------------------------------------------------------------------------------- /ddot/clixo_0.3/corrector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/corrector.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/dag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/dag.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/dagConstruct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/dagConstruct.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/exampleInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/exampleInput -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/exampleOutput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/exampleOutput -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/exampleOutputOnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/exampleOutputOnt -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/exampleOutputOntStats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/exampleOutputOntStats -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/examplePeek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/examplePeek -------------------------------------------------------------------------------- /ddot/clixo_0.3/example/examplePeek_clusts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/example/examplePeek_clusts.txt -------------------------------------------------------------------------------- /ddot/clixo_0.3/extractOnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/extractOnt -------------------------------------------------------------------------------- /ddot/clixo_0.3/extractOnt_leaves: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/extractOnt_leaves -------------------------------------------------------------------------------- /ddot/clixo_0.3/graph_undirected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/graph_undirected.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/graph_undirected_bitset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/graph_undirected_bitset.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/makefile -------------------------------------------------------------------------------- /ddot/clixo_0.3/nodeDistanceObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/nodeDistanceObject.h -------------------------------------------------------------------------------- /ddot/clixo_0.3/ontologyTermStats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/ontologyTermStats -------------------------------------------------------------------------------- /ddot/clixo_0.3/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/clixo_0.3/util.h -------------------------------------------------------------------------------- /ddot/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/config.py -------------------------------------------------------------------------------- /ddot/ontology_style.cx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/ontology_style.cx -------------------------------------------------------------------------------- /ddot/passthrough_style.cx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/passthrough_style.cx -------------------------------------------------------------------------------- /ddot/site.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/site.cfg -------------------------------------------------------------------------------- /ddot/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/ddot/utils.py -------------------------------------------------------------------------------- /docker/Dockerfile-anaconda2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docker/Dockerfile-anaconda2 -------------------------------------------------------------------------------- /docker/Dockerfile-anaconda3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docker/Dockerfile-anaconda3 -------------------------------------------------------------------------------- /docker/build_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docker/build_docker.sh -------------------------------------------------------------------------------- /docker/push_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docker/push_docker.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fango.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/fango.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/install.rst -------------------------------------------------------------------------------- /docs/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/intro.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/ontology.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/ontology.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | pandas 2 | scipy 3 | python-igraph 4 | networkx 5 | numpy 6 | ndex-dev 7 | -------------------------------------------------------------------------------- /docs/software_pipeline_1dec2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/software_pipeline_1dec2017.png -------------------------------------------------------------------------------- /docs/software_pipeline_23jan2018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/software_pipeline_23jan2018.png -------------------------------------------------------------------------------- /docs/software_pipeline_6jul2017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/software_pipeline_6jul2017.png -------------------------------------------------------------------------------- /docs/toy_ontology.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology.ai -------------------------------------------------------------------------------- /docs/toy_ontology.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology.png -------------------------------------------------------------------------------- /docs/toy_ontology_S1.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_S1.ai -------------------------------------------------------------------------------- /docs/toy_ontology_S1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_S1.png -------------------------------------------------------------------------------- /docs/toy_ontology_alignment.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_alignment.ai -------------------------------------------------------------------------------- /docs/toy_ontology_alignment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_alignment.png -------------------------------------------------------------------------------- /docs/toy_ontology_dag2tree.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_dag2tree.ai -------------------------------------------------------------------------------- /docs/toy_ontology_dag2tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_dag2tree.png -------------------------------------------------------------------------------- /docs/toy_ontology_delete_not_transitive.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_delete_not_transitive.ai -------------------------------------------------------------------------------- /docs/toy_ontology_delete_not_transitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_delete_not_transitive.png -------------------------------------------------------------------------------- /docs/toy_ontology_delete_transitive.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_delete_transitive.ai -------------------------------------------------------------------------------- /docs/toy_ontology_delete_transitive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_delete_transitive.png -------------------------------------------------------------------------------- /docs/toy_ontology_propagate_gene_term.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_propagate_gene_term.ai -------------------------------------------------------------------------------- /docs/toy_ontology_propagate_gene_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_propagate_gene_term.png -------------------------------------------------------------------------------- /docs/toy_ontology_propagate_term_term.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_propagate_term_term.ai -------------------------------------------------------------------------------- /docs/toy_ontology_propagate_term_term.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_propagate_term_term.png -------------------------------------------------------------------------------- /docs/toy_ontology_spanning_tree.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_spanning_tree.ai -------------------------------------------------------------------------------- /docs/toy_ontology_spanning_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/toy_ontology_spanning_tree.png -------------------------------------------------------------------------------- /docs/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/tutorial.rst -------------------------------------------------------------------------------- /docs/utils.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/docs/utils.rst -------------------------------------------------------------------------------- /examples/Load_example_datasets.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/examples/Load_example_datasets.ipynb -------------------------------------------------------------------------------- /examples/Make_disease_gene_ontologies.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/examples/Make_disease_gene_ontologies.ipynb -------------------------------------------------------------------------------- /examples/Process_the_Gene_Ontology.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/examples/Process_the_Gene_Ontology.ipynb -------------------------------------------------------------------------------- /examples/Tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/examples/Tutorial.ipynb -------------------------------------------------------------------------------- /examples/disease_gene_ontologies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/examples/disease_gene_ontologies.txt -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/makefile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michaelkyu/ddot/HEAD/setup.py --------------------------------------------------------------------------------