├── .gitattributes ├── .github └── workflows │ ├── codeql-analysis.yml │ └── wheels.yml ├── .gitignore ├── .readthedocs.yaml ├── 01_LICENSE.txt ├── MANIFEST.in ├── Makefile.centos ├── Makefile.noVTK ├── Makefile.osx ├── README.md ├── boost_1_81_0 ├── LICENSE_1_0.txt ├── README.md └── boost │ ├── align.hpp │ ├── align │ ├── align.hpp │ ├── align_down.hpp │ ├── align_up.hpp │ ├── aligned_alloc.hpp │ ├── aligned_allocator.hpp │ ├── aligned_allocator_adaptor.hpp │ ├── aligned_allocator_adaptor_forward.hpp │ ├── aligned_allocator_forward.hpp │ ├── aligned_delete.hpp │ ├── aligned_delete_forward.hpp │ ├── alignment_of.hpp │ ├── alignment_of_forward.hpp │ ├── assume_aligned.hpp │ ├── detail │ │ ├── add_reference.hpp │ │ ├── align.hpp │ │ ├── align_cxx11.hpp │ │ ├── align_down.hpp │ │ ├── align_up.hpp │ │ ├── aligned_alloc.hpp │ │ ├── aligned_alloc_android.hpp │ │ ├── aligned_alloc_macos.hpp │ │ ├── aligned_alloc_mingw.hpp │ │ ├── aligned_alloc_msvc.hpp │ │ ├── aligned_alloc_new.hpp │ │ ├── aligned_alloc_posix.hpp │ │ ├── aligned_alloc_sunos.hpp │ │ ├── alignment_of.hpp │ │ ├── alignment_of_clang.hpp │ │ ├── alignment_of_codegear.hpp │ │ ├── alignment_of_cxx11.hpp │ │ ├── alignment_of_gcc.hpp │ │ ├── alignment_of_msvc.hpp │ │ ├── assume_aligned.hpp │ │ ├── assume_aligned_clang.hpp │ │ ├── assume_aligned_gcc.hpp │ │ ├── assume_aligned_intel.hpp │ │ ├── assume_aligned_msvc.hpp │ │ ├── element_type.hpp │ │ ├── integral_constant.hpp │ │ ├── is_aligned.hpp │ │ ├── is_alignment.hpp │ │ ├── is_alignment_constant.hpp │ │ ├── max_align.hpp │ │ ├── max_objects.hpp │ │ ├── max_size.hpp │ │ ├── min_size.hpp │ │ ├── not_pointer.hpp │ │ └── throw_exception.hpp │ └── is_aligned.hpp │ ├── aligned_storage.hpp │ ├── asio.hpp │ ├── asio │ ├── any_completion_executor.hpp │ ├── any_completion_handler.hpp │ ├── any_io_executor.hpp │ ├── append.hpp │ ├── as_tuple.hpp │ ├── associated_allocator.hpp │ ├── associated_cancellation_slot.hpp │ ├── associated_executor.hpp │ ├── associator.hpp │ ├── async_result.hpp │ ├── awaitable.hpp │ ├── basic_datagram_socket.hpp │ ├── basic_deadline_timer.hpp │ ├── basic_file.hpp │ ├── basic_io_object.hpp │ ├── basic_random_access_file.hpp │ ├── basic_raw_socket.hpp │ ├── basic_readable_pipe.hpp │ ├── basic_seq_packet_socket.hpp │ ├── basic_serial_port.hpp │ ├── basic_signal_set.hpp │ ├── basic_socket.hpp │ ├── basic_socket_acceptor.hpp │ ├── basic_socket_iostream.hpp │ ├── basic_socket_streambuf.hpp │ ├── basic_stream_file.hpp │ ├── basic_stream_socket.hpp │ ├── basic_streambuf.hpp │ ├── basic_streambuf_fwd.hpp │ ├── basic_waitable_timer.hpp │ ├── basic_writable_pipe.hpp │ ├── bind_allocator.hpp │ ├── bind_cancellation_slot.hpp │ ├── bind_executor.hpp │ ├── buffer.hpp │ ├── buffer_registration.hpp │ ├── buffered_read_stream.hpp │ ├── buffered_read_stream_fwd.hpp │ ├── buffered_stream.hpp │ ├── buffered_stream_fwd.hpp │ ├── buffered_write_stream.hpp │ ├── buffered_write_stream_fwd.hpp │ ├── buffers_iterator.hpp │ ├── cancellation_signal.hpp │ ├── cancellation_state.hpp │ ├── cancellation_type.hpp │ ├── co_spawn.hpp │ ├── completion_condition.hpp │ ├── compose.hpp │ ├── connect.hpp │ ├── connect_pipe.hpp │ ├── consign.hpp │ ├── coroutine.hpp │ ├── deadline_timer.hpp │ ├── defer.hpp │ ├── deferred.hpp │ ├── detached.hpp │ ├── detail │ │ ├── array.hpp │ │ ├── array_fwd.hpp │ │ ├── assert.hpp │ │ ├── atomic_count.hpp │ │ ├── base_from_cancellation_state.hpp │ │ ├── base_from_completion_cond.hpp │ │ ├── bind_handler.hpp │ │ ├── blocking_executor_op.hpp │ │ ├── buffer_resize_guard.hpp │ │ ├── buffer_sequence_adapter.hpp │ │ ├── buffered_stream_storage.hpp │ │ ├── bulk_executor_op.hpp │ │ ├── call_stack.hpp │ │ ├── chrono.hpp │ │ ├── chrono_time_traits.hpp │ │ ├── completion_handler.hpp │ │ ├── composed_work.hpp │ │ ├── concurrency_hint.hpp │ │ ├── conditionally_enabled_event.hpp │ │ ├── conditionally_enabled_mutex.hpp │ │ ├── config.hpp │ │ ├── consuming_buffers.hpp │ │ ├── cstddef.hpp │ │ ├── cstdint.hpp │ │ ├── date_time_fwd.hpp │ │ ├── deadline_timer_service.hpp │ │ ├── dependent_type.hpp │ │ ├── descriptor_ops.hpp │ │ ├── descriptor_read_op.hpp │ │ ├── descriptor_write_op.hpp │ │ ├── dev_poll_reactor.hpp │ │ ├── epoll_reactor.hpp │ │ ├── event.hpp │ │ ├── eventfd_select_interrupter.hpp │ │ ├── exception.hpp │ │ ├── executor_function.hpp │ │ ├── executor_op.hpp │ │ ├── fd_set_adapter.hpp │ │ ├── fenced_block.hpp │ │ ├── functional.hpp │ │ ├── future.hpp │ │ ├── gcc_arm_fenced_block.hpp │ │ ├── gcc_hppa_fenced_block.hpp │ │ ├── gcc_sync_fenced_block.hpp │ │ ├── gcc_x86_fenced_block.hpp │ │ ├── global.hpp │ │ ├── handler_alloc_helpers.hpp │ │ ├── handler_cont_helpers.hpp │ │ ├── handler_invoke_helpers.hpp │ │ ├── handler_tracking.hpp │ │ ├── handler_type_requirements.hpp │ │ ├── handler_work.hpp │ │ ├── hash_map.hpp │ │ ├── impl │ │ │ ├── buffer_sequence_adapter.ipp │ │ │ ├── descriptor_ops.ipp │ │ │ ├── dev_poll_reactor.hpp │ │ │ ├── dev_poll_reactor.ipp │ │ │ ├── epoll_reactor.hpp │ │ │ ├── epoll_reactor.ipp │ │ │ ├── eventfd_select_interrupter.ipp │ │ │ ├── handler_tracking.ipp │ │ │ ├── io_uring_descriptor_service.ipp │ │ │ ├── io_uring_file_service.ipp │ │ │ ├── io_uring_service.hpp │ │ │ ├── io_uring_service.ipp │ │ │ ├── io_uring_socket_service_base.ipp │ │ │ ├── kqueue_reactor.hpp │ │ │ ├── kqueue_reactor.ipp │ │ │ ├── null_event.ipp │ │ │ ├── pipe_select_interrupter.ipp │ │ │ ├── posix_event.ipp │ │ │ ├── posix_mutex.ipp │ │ │ ├── posix_serial_port_service.ipp │ │ │ ├── posix_thread.ipp │ │ │ ├── posix_tss_ptr.ipp │ │ │ ├── reactive_descriptor_service.ipp │ │ │ ├── reactive_socket_service_base.ipp │ │ │ ├── resolver_service_base.ipp │ │ │ ├── scheduler.ipp │ │ │ ├── select_reactor.hpp │ │ │ ├── select_reactor.ipp │ │ │ ├── service_registry.hpp │ │ │ ├── service_registry.ipp │ │ │ ├── signal_set_service.ipp │ │ │ ├── socket_ops.ipp │ │ │ ├── socket_select_interrupter.ipp │ │ │ ├── strand_executor_service.hpp │ │ │ ├── strand_executor_service.ipp │ │ │ ├── strand_service.hpp │ │ │ ├── strand_service.ipp │ │ │ ├── thread_context.ipp │ │ │ ├── throw_error.ipp │ │ │ ├── timer_queue_ptime.ipp │ │ │ ├── timer_queue_set.ipp │ │ │ ├── win_event.ipp │ │ │ ├── win_iocp_file_service.ipp │ │ │ ├── win_iocp_handle_service.ipp │ │ │ ├── win_iocp_io_context.hpp │ │ │ ├── win_iocp_io_context.ipp │ │ │ ├── win_iocp_serial_port_service.ipp │ │ │ ├── win_iocp_socket_service_base.ipp │ │ │ ├── win_mutex.ipp │ │ │ ├── win_object_handle_service.ipp │ │ │ ├── win_static_mutex.ipp │ │ │ ├── win_thread.ipp │ │ │ ├── win_tss_ptr.ipp │ │ │ ├── winrt_ssocket_service_base.ipp │ │ │ ├── winrt_timer_scheduler.hpp │ │ │ ├── winrt_timer_scheduler.ipp │ │ │ └── winsock_init.ipp │ │ ├── io_control.hpp │ │ ├── io_object_impl.hpp │ │ ├── io_uring_descriptor_read_at_op.hpp │ │ ├── io_uring_descriptor_read_op.hpp │ │ ├── io_uring_descriptor_service.hpp │ │ ├── io_uring_descriptor_write_at_op.hpp │ │ ├── io_uring_descriptor_write_op.hpp │ │ ├── io_uring_file_service.hpp │ │ ├── io_uring_null_buffers_op.hpp │ │ ├── io_uring_operation.hpp │ │ ├── io_uring_service.hpp │ │ ├── io_uring_socket_accept_op.hpp │ │ ├── io_uring_socket_connect_op.hpp │ │ ├── io_uring_socket_recv_op.hpp │ │ ├── io_uring_socket_recvfrom_op.hpp │ │ ├── io_uring_socket_recvmsg_op.hpp │ │ ├── io_uring_socket_send_op.hpp │ │ ├── io_uring_socket_sendto_op.hpp │ │ ├── io_uring_socket_service.hpp │ │ ├── io_uring_socket_service_base.hpp │ │ ├── io_uring_wait_op.hpp │ │ ├── is_buffer_sequence.hpp │ │ ├── is_executor.hpp │ │ ├── keyword_tss_ptr.hpp │ │ ├── kqueue_reactor.hpp │ │ ├── limits.hpp │ │ ├── local_free_on_block_exit.hpp │ │ ├── macos_fenced_block.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── non_const_lvalue.hpp │ │ ├── noncopyable.hpp │ │ ├── null_event.hpp │ │ ├── null_fenced_block.hpp │ │ ├── null_global.hpp │ │ ├── null_mutex.hpp │ │ ├── null_reactor.hpp │ │ ├── null_signal_blocker.hpp │ │ ├── null_socket_service.hpp │ │ ├── null_static_mutex.hpp │ │ ├── null_thread.hpp │ │ ├── null_tss_ptr.hpp │ │ ├── object_pool.hpp │ │ ├── old_win_sdk_compat.hpp │ │ ├── op_queue.hpp │ │ ├── operation.hpp │ │ ├── pipe_select_interrupter.hpp │ │ ├── pop_options.hpp │ │ ├── posix_event.hpp │ │ ├── posix_fd_set_adapter.hpp │ │ ├── posix_global.hpp │ │ ├── posix_mutex.hpp │ │ ├── posix_serial_port_service.hpp │ │ ├── posix_signal_blocker.hpp │ │ ├── posix_static_mutex.hpp │ │ ├── posix_thread.hpp │ │ ├── posix_tss_ptr.hpp │ │ ├── push_options.hpp │ │ ├── reactive_descriptor_service.hpp │ │ ├── reactive_null_buffers_op.hpp │ │ ├── reactive_socket_accept_op.hpp │ │ ├── reactive_socket_connect_op.hpp │ │ ├── reactive_socket_recv_op.hpp │ │ ├── reactive_socket_recvfrom_op.hpp │ │ ├── reactive_socket_recvmsg_op.hpp │ │ ├── reactive_socket_send_op.hpp │ │ ├── reactive_socket_sendto_op.hpp │ │ ├── reactive_socket_service.hpp │ │ ├── reactive_socket_service_base.hpp │ │ ├── reactive_wait_op.hpp │ │ ├── reactor.hpp │ │ ├── reactor_op.hpp │ │ ├── reactor_op_queue.hpp │ │ ├── recycling_allocator.hpp │ │ ├── regex_fwd.hpp │ │ ├── resolve_endpoint_op.hpp │ │ ├── resolve_op.hpp │ │ ├── resolve_query_op.hpp │ │ ├── resolver_service.hpp │ │ ├── resolver_service_base.hpp │ │ ├── scheduler.hpp │ │ ├── scheduler_operation.hpp │ │ ├── scheduler_task.hpp │ │ ├── scheduler_thread_info.hpp │ │ ├── scoped_lock.hpp │ │ ├── scoped_ptr.hpp │ │ ├── select_interrupter.hpp │ │ ├── select_reactor.hpp │ │ ├── service_registry.hpp │ │ ├── signal_blocker.hpp │ │ ├── signal_handler.hpp │ │ ├── signal_init.hpp │ │ ├── signal_op.hpp │ │ ├── signal_set_service.hpp │ │ ├── socket_holder.hpp │ │ ├── socket_ops.hpp │ │ ├── socket_option.hpp │ │ ├── socket_select_interrupter.hpp │ │ ├── socket_types.hpp │ │ ├── solaris_fenced_block.hpp │ │ ├── source_location.hpp │ │ ├── static_mutex.hpp │ │ ├── std_event.hpp │ │ ├── std_fenced_block.hpp │ │ ├── std_global.hpp │ │ ├── std_mutex.hpp │ │ ├── std_static_mutex.hpp │ │ ├── std_thread.hpp │ │ ├── strand_executor_service.hpp │ │ ├── strand_service.hpp │ │ ├── string_view.hpp │ │ ├── thread.hpp │ │ ├── thread_context.hpp │ │ ├── thread_group.hpp │ │ ├── thread_info_base.hpp │ │ ├── throw_error.hpp │ │ ├── throw_exception.hpp │ │ ├── timer_queue.hpp │ │ ├── timer_queue_base.hpp │ │ ├── timer_queue_ptime.hpp │ │ ├── timer_queue_set.hpp │ │ ├── timer_scheduler.hpp │ │ ├── timer_scheduler_fwd.hpp │ │ ├── tss_ptr.hpp │ │ ├── type_traits.hpp │ │ ├── utility.hpp │ │ ├── variadic_templates.hpp │ │ ├── wait_handler.hpp │ │ ├── wait_op.hpp │ │ ├── win_event.hpp │ │ ├── win_fd_set_adapter.hpp │ │ ├── win_fenced_block.hpp │ │ ├── win_global.hpp │ │ ├── win_iocp_file_service.hpp │ │ ├── win_iocp_handle_read_op.hpp │ │ ├── win_iocp_handle_service.hpp │ │ ├── win_iocp_handle_write_op.hpp │ │ ├── win_iocp_io_context.hpp │ │ ├── win_iocp_null_buffers_op.hpp │ │ ├── win_iocp_operation.hpp │ │ ├── win_iocp_overlapped_op.hpp │ │ ├── win_iocp_overlapped_ptr.hpp │ │ ├── win_iocp_serial_port_service.hpp │ │ ├── win_iocp_socket_accept_op.hpp │ │ ├── win_iocp_socket_connect_op.hpp │ │ ├── win_iocp_socket_recv_op.hpp │ │ ├── win_iocp_socket_recvfrom_op.hpp │ │ ├── win_iocp_socket_recvmsg_op.hpp │ │ ├── win_iocp_socket_send_op.hpp │ │ ├── win_iocp_socket_service.hpp │ │ ├── win_iocp_socket_service_base.hpp │ │ ├── win_iocp_thread_info.hpp │ │ ├── win_iocp_wait_op.hpp │ │ ├── win_mutex.hpp │ │ ├── win_object_handle_service.hpp │ │ ├── win_static_mutex.hpp │ │ ├── win_thread.hpp │ │ ├── win_tss_ptr.hpp │ │ ├── winapp_thread.hpp │ │ ├── wince_thread.hpp │ │ ├── winrt_async_manager.hpp │ │ ├── winrt_async_op.hpp │ │ ├── winrt_resolve_op.hpp │ │ ├── winrt_resolver_service.hpp │ │ ├── winrt_socket_connect_op.hpp │ │ ├── winrt_socket_recv_op.hpp │ │ ├── winrt_socket_send_op.hpp │ │ ├── winrt_ssocket_service.hpp │ │ ├── winrt_ssocket_service_base.hpp │ │ ├── winrt_timer_scheduler.hpp │ │ ├── winrt_utils.hpp │ │ ├── winsock_init.hpp │ │ ├── work_dispatcher.hpp │ │ └── wrapped_handler.hpp │ ├── dispatch.hpp │ ├── error.hpp │ ├── execution.hpp │ ├── execution │ │ ├── allocator.hpp │ │ ├── any_executor.hpp │ │ ├── bad_executor.hpp │ │ ├── blocking.hpp │ │ ├── blocking_adaptation.hpp │ │ ├── bulk_execute.hpp │ │ ├── bulk_guarantee.hpp │ │ ├── connect.hpp │ │ ├── context.hpp │ │ ├── context_as.hpp │ │ ├── detail │ │ │ ├── as_invocable.hpp │ │ │ ├── as_operation.hpp │ │ │ ├── as_receiver.hpp │ │ │ ├── bulk_sender.hpp │ │ │ ├── submit_receiver.hpp │ │ │ └── void_receiver.hpp │ │ ├── execute.hpp │ │ ├── executor.hpp │ │ ├── impl │ │ │ ├── bad_executor.ipp │ │ │ └── receiver_invocation_error.ipp │ │ ├── invocable_archetype.hpp │ │ ├── mapping.hpp │ │ ├── occupancy.hpp │ │ ├── operation_state.hpp │ │ ├── outstanding_work.hpp │ │ ├── prefer_only.hpp │ │ ├── receiver.hpp │ │ ├── receiver_invocation_error.hpp │ │ ├── relationship.hpp │ │ ├── schedule.hpp │ │ ├── scheduler.hpp │ │ ├── sender.hpp │ │ ├── set_done.hpp │ │ ├── set_error.hpp │ │ ├── set_value.hpp │ │ ├── start.hpp │ │ └── submit.hpp │ ├── execution_context.hpp │ ├── executor.hpp │ ├── executor_work_guard.hpp │ ├── experimental │ │ ├── append.hpp │ │ ├── as_single.hpp │ │ ├── as_tuple.hpp │ │ ├── awaitable_operators.hpp │ │ ├── basic_channel.hpp │ │ ├── basic_concurrent_channel.hpp │ │ ├── cancellation_condition.hpp │ │ ├── channel.hpp │ │ ├── channel_error.hpp │ │ ├── channel_traits.hpp │ │ ├── co_composed.hpp │ │ ├── co_spawn.hpp │ │ ├── concurrent_channel.hpp │ │ ├── coro.hpp │ │ ├── coro_traits.hpp │ │ ├── deferred.hpp │ │ ├── detail │ │ │ ├── channel_handler.hpp │ │ │ ├── channel_message.hpp │ │ │ ├── channel_operation.hpp │ │ │ ├── channel_payload.hpp │ │ │ ├── channel_receive_op.hpp │ │ │ ├── channel_send_functions.hpp │ │ │ ├── channel_send_op.hpp │ │ │ ├── channel_service.hpp │ │ │ ├── coro_completion_handler.hpp │ │ │ ├── coro_promise_allocator.hpp │ │ │ ├── has_signature.hpp │ │ │ ├── impl │ │ │ │ └── channel_service.hpp │ │ │ └── partial_promise.hpp │ │ ├── impl │ │ │ ├── as_single.hpp │ │ │ ├── channel_error.ipp │ │ │ ├── co_composed.hpp │ │ │ ├── coro.hpp │ │ │ ├── parallel_group.hpp │ │ │ ├── promise.hpp │ │ │ ├── use_coro.hpp │ │ │ └── use_promise.hpp │ │ ├── parallel_group.hpp │ │ ├── prepend.hpp │ │ ├── promise.hpp │ │ ├── use_coro.hpp │ │ └── use_promise.hpp │ ├── file_base.hpp │ ├── generic │ │ ├── basic_endpoint.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ ├── raw_protocol.hpp │ │ ├── seq_packet_protocol.hpp │ │ └── stream_protocol.hpp │ ├── handler_alloc_hook.hpp │ ├── handler_continuation_hook.hpp │ ├── handler_invoke_hook.hpp │ ├── high_resolution_timer.hpp │ ├── impl │ │ ├── any_completion_executor.ipp │ │ ├── any_io_executor.ipp │ │ ├── append.hpp │ │ ├── as_tuple.hpp │ │ ├── awaitable.hpp │ │ ├── buffered_read_stream.hpp │ │ ├── buffered_write_stream.hpp │ │ ├── cancellation_signal.ipp │ │ ├── co_spawn.hpp │ │ ├── connect.hpp │ │ ├── connect_pipe.hpp │ │ ├── connect_pipe.ipp │ │ ├── consign.hpp │ │ ├── defer.hpp │ │ ├── deferred.hpp │ │ ├── detached.hpp │ │ ├── dispatch.hpp │ │ ├── error.ipp │ │ ├── execution_context.hpp │ │ ├── execution_context.ipp │ │ ├── executor.hpp │ │ ├── executor.ipp │ │ ├── handler_alloc_hook.ipp │ │ ├── io_context.hpp │ │ ├── io_context.ipp │ │ ├── multiple_exceptions.ipp │ │ ├── post.hpp │ │ ├── prepend.hpp │ │ ├── read.hpp │ │ ├── read_at.hpp │ │ ├── read_until.hpp │ │ ├── redirect_error.hpp │ │ ├── serial_port_base.hpp │ │ ├── serial_port_base.ipp │ │ ├── spawn.hpp │ │ ├── src.hpp │ │ ├── system_context.hpp │ │ ├── system_context.ipp │ │ ├── system_executor.hpp │ │ ├── thread_pool.hpp │ │ ├── thread_pool.ipp │ │ ├── use_awaitable.hpp │ │ ├── use_future.hpp │ │ ├── write.hpp │ │ └── write_at.hpp │ ├── io_context.hpp │ ├── io_context_strand.hpp │ ├── io_service.hpp │ ├── io_service_strand.hpp │ ├── ip │ │ ├── address.hpp │ │ ├── address_v4.hpp │ │ ├── address_v4_iterator.hpp │ │ ├── address_v4_range.hpp │ │ ├── address_v6.hpp │ │ ├── address_v6_iterator.hpp │ │ ├── address_v6_range.hpp │ │ ├── bad_address_cast.hpp │ │ ├── basic_endpoint.hpp │ │ ├── basic_resolver.hpp │ │ ├── basic_resolver_entry.hpp │ │ ├── basic_resolver_iterator.hpp │ │ ├── basic_resolver_query.hpp │ │ ├── basic_resolver_results.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ ├── impl │ │ │ │ └── endpoint.ipp │ │ │ └── socket_option.hpp │ │ ├── host_name.hpp │ │ ├── icmp.hpp │ │ ├── impl │ │ │ ├── address.hpp │ │ │ ├── address.ipp │ │ │ ├── address_v4.hpp │ │ │ ├── address_v4.ipp │ │ │ ├── address_v6.hpp │ │ │ ├── address_v6.ipp │ │ │ ├── basic_endpoint.hpp │ │ │ ├── host_name.ipp │ │ │ ├── network_v4.hpp │ │ │ ├── network_v4.ipp │ │ │ ├── network_v6.hpp │ │ │ └── network_v6.ipp │ │ ├── multicast.hpp │ │ ├── network_v4.hpp │ │ ├── network_v6.hpp │ │ ├── resolver_base.hpp │ │ ├── resolver_query_base.hpp │ │ ├── tcp.hpp │ │ ├── udp.hpp │ │ ├── unicast.hpp │ │ └── v6_only.hpp │ ├── is_applicable_property.hpp │ ├── is_contiguous_iterator.hpp │ ├── is_executor.hpp │ ├── is_read_buffered.hpp │ ├── is_write_buffered.hpp │ ├── local │ │ ├── basic_endpoint.hpp │ │ ├── connect_pair.hpp │ │ ├── datagram_protocol.hpp │ │ ├── detail │ │ │ ├── endpoint.hpp │ │ │ └── impl │ │ │ │ └── endpoint.ipp │ │ └── stream_protocol.hpp │ ├── multiple_exceptions.hpp │ ├── packaged_task.hpp │ ├── placeholders.hpp │ ├── posix │ │ ├── basic_descriptor.hpp │ │ ├── basic_stream_descriptor.hpp │ │ ├── descriptor.hpp │ │ ├── descriptor_base.hpp │ │ └── stream_descriptor.hpp │ ├── post.hpp │ ├── prefer.hpp │ ├── prepend.hpp │ ├── query.hpp │ ├── random_access_file.hpp │ ├── read.hpp │ ├── read_at.hpp │ ├── read_until.hpp │ ├── readable_pipe.hpp │ ├── recycling_allocator.hpp │ ├── redirect_error.hpp │ ├── registered_buffer.hpp │ ├── require.hpp │ ├── require_concept.hpp │ ├── serial_port.hpp │ ├── serial_port_base.hpp │ ├── signal_set.hpp │ ├── socket_base.hpp │ ├── spawn.hpp │ ├── ssl.hpp │ ├── ssl │ │ ├── context.hpp │ │ ├── context_base.hpp │ │ ├── detail │ │ │ ├── buffered_handshake_op.hpp │ │ │ ├── engine.hpp │ │ │ ├── handshake_op.hpp │ │ │ ├── impl │ │ │ │ ├── engine.ipp │ │ │ │ └── openssl_init.ipp │ │ │ ├── io.hpp │ │ │ ├── openssl_init.hpp │ │ │ ├── openssl_types.hpp │ │ │ ├── password_callback.hpp │ │ │ ├── read_op.hpp │ │ │ ├── shutdown_op.hpp │ │ │ ├── stream_core.hpp │ │ │ ├── verify_callback.hpp │ │ │ └── write_op.hpp │ │ ├── error.hpp │ │ ├── host_name_verification.hpp │ │ ├── impl │ │ │ ├── context.hpp │ │ │ ├── context.ipp │ │ │ ├── error.ipp │ │ │ ├── host_name_verification.ipp │ │ │ ├── rfc2818_verification.ipp │ │ │ └── src.hpp │ │ ├── rfc2818_verification.hpp │ │ ├── stream.hpp │ │ ├── stream_base.hpp │ │ ├── verify_context.hpp │ │ └── verify_mode.hpp │ ├── static_thread_pool.hpp │ ├── steady_timer.hpp │ ├── strand.hpp │ ├── stream_file.hpp │ ├── streambuf.hpp │ ├── system_context.hpp │ ├── system_executor.hpp │ ├── system_timer.hpp │ ├── this_coro.hpp │ ├── thread_pool.hpp │ ├── time_traits.hpp │ ├── traits │ │ ├── bulk_execute_free.hpp │ │ ├── bulk_execute_member.hpp │ │ ├── connect_free.hpp │ │ ├── connect_member.hpp │ │ ├── equality_comparable.hpp │ │ ├── execute_free.hpp │ │ ├── execute_member.hpp │ │ ├── prefer_free.hpp │ │ ├── prefer_member.hpp │ │ ├── query_free.hpp │ │ ├── query_member.hpp │ │ ├── query_static_constexpr_member.hpp │ │ ├── require_concept_free.hpp │ │ ├── require_concept_member.hpp │ │ ├── require_free.hpp │ │ ├── require_member.hpp │ │ ├── schedule_free.hpp │ │ ├── schedule_member.hpp │ │ ├── set_done_free.hpp │ │ ├── set_done_member.hpp │ │ ├── set_error_free.hpp │ │ ├── set_error_member.hpp │ │ ├── set_value_free.hpp │ │ ├── set_value_member.hpp │ │ ├── start_free.hpp │ │ ├── start_member.hpp │ │ ├── static_query.hpp │ │ ├── static_require.hpp │ │ ├── static_require_concept.hpp │ │ ├── submit_free.hpp │ │ └── submit_member.hpp │ ├── ts │ │ ├── buffer.hpp │ │ ├── executor.hpp │ │ ├── internet.hpp │ │ ├── io_context.hpp │ │ ├── net.hpp │ │ ├── netfwd.hpp │ │ ├── socket.hpp │ │ └── timer.hpp │ ├── unyield.hpp │ ├── use_awaitable.hpp │ ├── use_future.hpp │ ├── uses_executor.hpp │ ├── version.hpp │ ├── wait_traits.hpp │ ├── windows │ │ ├── basic_object_handle.hpp │ │ ├── basic_overlapped_handle.hpp │ │ ├── basic_random_access_handle.hpp │ │ ├── basic_stream_handle.hpp │ │ ├── object_handle.hpp │ │ ├── overlapped_handle.hpp │ │ ├── overlapped_ptr.hpp │ │ ├── random_access_handle.hpp │ │ └── stream_handle.hpp │ ├── writable_pipe.hpp │ ├── write.hpp │ ├── write_at.hpp │ └── yield.hpp │ ├── assert.hpp │ ├── assert │ └── source_location.hpp │ ├── cerrno.hpp │ ├── config.hpp │ ├── config │ ├── abi │ │ ├── borland_prefix.hpp │ │ ├── borland_suffix.hpp │ │ ├── msvc_prefix.hpp │ │ └── msvc_suffix.hpp │ ├── abi_prefix.hpp │ ├── abi_suffix.hpp │ ├── assert_cxx03.hpp │ ├── assert_cxx11.hpp │ ├── assert_cxx14.hpp │ ├── assert_cxx17.hpp │ ├── assert_cxx20.hpp │ ├── assert_cxx98.hpp │ ├── auto_link.hpp │ ├── compiler │ │ ├── borland.hpp │ │ ├── clang.hpp │ │ ├── clang_version.hpp │ │ ├── codegear.hpp │ │ ├── comeau.hpp │ │ ├── common_edg.hpp │ │ ├── compaq_cxx.hpp │ │ ├── cray.hpp │ │ ├── diab.hpp │ │ ├── digitalmars.hpp │ │ ├── gcc.hpp │ │ ├── gcc_xml.hpp │ │ ├── greenhills.hpp │ │ ├── hp_acc.hpp │ │ ├── intel.hpp │ │ ├── kai.hpp │ │ ├── metrowerks.hpp │ │ ├── mpw.hpp │ │ ├── nvcc.hpp │ │ ├── pathscale.hpp │ │ ├── pgi.hpp │ │ ├── sgi_mipspro.hpp │ │ ├── sunpro_cc.hpp │ │ ├── vacpp.hpp │ │ ├── visualc.hpp │ │ ├── xlcpp.hpp │ │ └── xlcpp_zos.hpp │ ├── detail │ │ ├── cxx_composite.hpp │ │ ├── posix_features.hpp │ │ ├── select_compiler_config.hpp │ │ ├── select_platform_config.hpp │ │ ├── select_stdlib_config.hpp │ │ └── suffix.hpp │ ├── header_deprecated.hpp │ ├── helper_macros.hpp │ ├── no_tr1 │ │ ├── cmath.hpp │ │ ├── complex.hpp │ │ ├── functional.hpp │ │ ├── memory.hpp │ │ └── utility.hpp │ ├── platform │ │ ├── aix.hpp │ │ ├── amigaos.hpp │ │ ├── beos.hpp │ │ ├── bsd.hpp │ │ ├── cloudabi.hpp │ │ ├── cray.hpp │ │ ├── cygwin.hpp │ │ ├── haiku.hpp │ │ ├── hpux.hpp │ │ ├── irix.hpp │ │ ├── linux.hpp │ │ ├── macos.hpp │ │ ├── qnxnto.hpp │ │ ├── solaris.hpp │ │ ├── symbian.hpp │ │ ├── vms.hpp │ │ ├── vxworks.hpp │ │ ├── wasm.hpp │ │ ├── win32.hpp │ │ └── zos.hpp │ ├── pragma_message.hpp │ ├── requires_threads.hpp │ ├── stdlib │ │ ├── dinkumware.hpp │ │ ├── libcomo.hpp │ │ ├── libcpp.hpp │ │ ├── libstdcpp3.hpp │ │ ├── modena.hpp │ │ ├── msl.hpp │ │ ├── roguewave.hpp │ │ ├── sgi.hpp │ │ ├── stlport.hpp │ │ ├── vacpp.hpp │ │ └── xlcpp_zos.hpp │ ├── user.hpp │ ├── warning_disable.hpp │ └── workaround.hpp │ ├── core │ ├── addressof.hpp │ ├── alloc_construct.hpp │ ├── allocator_access.hpp │ ├── allocator_traits.hpp │ ├── bit.hpp │ ├── checked_delete.hpp │ ├── cmath.hpp │ ├── default_allocator.hpp │ ├── demangle.hpp │ ├── detail │ │ ├── splitmix64.hpp │ │ └── string_view.hpp │ ├── empty_value.hpp │ ├── enable_if.hpp │ ├── exchange.hpp │ ├── explicit_operator_bool.hpp │ ├── fclose_deleter.hpp │ ├── first_scalar.hpp │ ├── ignore_unused.hpp │ ├── is_same.hpp │ ├── lightweight_test.hpp │ ├── lightweight_test_trait.hpp │ ├── no_exceptions_support.hpp │ ├── noinit_adaptor.hpp │ ├── noncopyable.hpp │ ├── null_deleter.hpp │ ├── nvp.hpp │ ├── pointer_traits.hpp │ ├── quick_exit.hpp │ ├── ref.hpp │ ├── scoped_enum.hpp │ ├── span.hpp │ ├── swap.hpp │ ├── type_name.hpp │ ├── typeinfo.hpp │ ├── uncaught_exceptions.hpp │ ├── underlying_type.hpp │ ├── use_default.hpp │ └── verbose_terminate_handler.hpp │ ├── cstdint.hpp │ ├── current_function.hpp │ ├── detail │ ├── algorithm.hpp │ ├── allocator_utilities.hpp │ ├── atomic_count.hpp │ ├── basic_pointerbuf.hpp │ ├── binary_search.hpp │ ├── bitmask.hpp │ ├── call_traits.hpp │ ├── catch_exceptions.hpp │ ├── compressed_pair.hpp │ ├── container_fwd.hpp │ ├── fenv.hpp │ ├── has_default_constructor.hpp │ ├── identifier.hpp │ ├── indirect_traits.hpp │ ├── interlocked.hpp │ ├── is_incrementable.hpp │ ├── is_sorted.hpp │ ├── is_xxx.hpp │ ├── iterator.hpp │ ├── lcast_precision.hpp │ ├── lightweight_main.hpp │ ├── lightweight_mutex.hpp │ ├── lightweight_test.hpp │ ├── lightweight_test_report.hpp │ ├── lightweight_thread.hpp │ ├── named_template_params.hpp │ ├── no_exceptions_support.hpp │ ├── numeric_traits.hpp │ ├── ob_compressed_pair.hpp │ ├── quick_allocator.hpp │ ├── reference_content.hpp │ ├── scoped_enum_emulation.hpp │ ├── select_type.hpp │ ├── sp_typeinfo.hpp │ ├── templated_streams.hpp │ ├── utf8_codecvt_facet.hpp │ ├── utf8_codecvt_facet.ipp │ ├── winapi │ │ ├── access_rights.hpp │ │ ├── apc.hpp │ │ ├── basic_types.hpp │ │ ├── bcrypt.hpp │ │ ├── character_code_conversion.hpp │ │ ├── condition_variable.hpp │ │ ├── config.hpp │ │ ├── critical_section.hpp │ │ ├── crypt.hpp │ │ ├── dbghelp.hpp │ │ ├── debugapi.hpp │ │ ├── detail │ │ │ └── deprecated_namespace.hpp │ │ ├── directory_management.hpp │ │ ├── dll.hpp │ │ ├── environment.hpp │ │ ├── error_codes.hpp │ │ ├── error_handling.hpp │ │ ├── event.hpp │ │ ├── file_management.hpp │ │ ├── file_mapping.hpp │ │ ├── get_current_process.hpp │ │ ├── get_current_process_id.hpp │ │ ├── get_current_thread.hpp │ │ ├── get_current_thread_id.hpp │ │ ├── get_last_error.hpp │ │ ├── get_process_times.hpp │ │ ├── get_system_directory.hpp │ │ ├── get_thread_times.hpp │ │ ├── handle_info.hpp │ │ ├── handles.hpp │ │ ├── heap_memory.hpp │ │ ├── init_once.hpp │ │ ├── jobs.hpp │ │ ├── limits.hpp │ │ ├── local_memory.hpp │ │ ├── memory.hpp │ │ ├── mutex.hpp │ │ ├── overlapped.hpp │ │ ├── page_protection_flags.hpp │ │ ├── pipes.hpp │ │ ├── priority_class.hpp │ │ ├── process.hpp │ │ ├── security.hpp │ │ ├── semaphore.hpp │ │ ├── shell.hpp │ │ ├── show_window.hpp │ │ ├── srw_lock.hpp │ │ ├── stack_backtrace.hpp │ │ ├── synchronization.hpp │ │ ├── system.hpp │ │ ├── thread.hpp │ │ ├── thread_pool.hpp │ │ ├── time.hpp │ │ ├── timers.hpp │ │ ├── tls.hpp │ │ ├── wait.hpp │ │ └── waitable_timer.hpp │ └── workaround.hpp │ ├── exception │ ├── all.hpp │ ├── current_exception_cast.hpp │ ├── detail │ │ ├── clone_current_exception.hpp │ │ ├── error_info_impl.hpp │ │ ├── exception_ptr.hpp │ │ ├── is_output_streamable.hpp │ │ ├── object_hex_dump.hpp │ │ ├── shared_ptr.hpp │ │ └── type_info.hpp │ ├── diagnostic_information.hpp │ ├── enable_current_exception.hpp │ ├── enable_error_info.hpp │ ├── errinfo_api_function.hpp │ ├── errinfo_at_line.hpp │ ├── errinfo_errno.hpp │ ├── errinfo_file_handle.hpp │ ├── errinfo_file_name.hpp │ ├── errinfo_file_open_mode.hpp │ ├── errinfo_nested_exception.hpp │ ├── errinfo_type_info_name.hpp │ ├── error_info.hpp │ ├── exception.hpp │ ├── get_error_info.hpp │ ├── info.hpp │ ├── info_tuple.hpp │ ├── to_string.hpp │ └── to_string_stub.hpp │ ├── math │ ├── policies │ │ ├── error_handling.hpp │ │ └── policy.hpp │ ├── special_functions │ │ ├── acosh.hpp │ │ ├── airy.hpp │ │ ├── asinh.hpp │ │ ├── atanh.hpp │ │ ├── bernoulli.hpp │ │ ├── bessel.hpp │ │ ├── bessel_iterators.hpp │ │ ├── bessel_prime.hpp │ │ ├── beta.hpp │ │ ├── binomial.hpp │ │ ├── cardinal_b_spline.hpp │ │ ├── cbrt.hpp │ │ ├── chebyshev.hpp │ │ ├── chebyshev_transform.hpp │ │ ├── cos_pi.hpp │ │ ├── daubechies_scaling.hpp │ │ ├── daubechies_wavelet.hpp │ │ ├── detail │ │ │ ├── airy_ai_bi_zero.hpp │ │ │ ├── bernoulli_details.hpp │ │ │ ├── bessel_derivatives_linear.hpp │ │ │ ├── bessel_i0.hpp │ │ │ ├── bessel_i1.hpp │ │ │ ├── bessel_ik.hpp │ │ │ ├── bessel_j0.hpp │ │ │ ├── bessel_j1.hpp │ │ │ ├── bessel_jn.hpp │ │ │ ├── bessel_jy.hpp │ │ │ ├── bessel_jy_asym.hpp │ │ │ ├── bessel_jy_derivatives_asym.hpp │ │ │ ├── bessel_jy_derivatives_series.hpp │ │ │ ├── bessel_jy_series.hpp │ │ │ ├── bessel_jy_zero.hpp │ │ │ ├── bessel_k0.hpp │ │ │ ├── bessel_k1.hpp │ │ │ ├── bessel_kn.hpp │ │ │ ├── bessel_y0.hpp │ │ │ ├── bessel_y1.hpp │ │ │ ├── bessel_yn.hpp │ │ │ ├── daubechies_scaling_integer_grid.hpp │ │ │ ├── erf_inv.hpp │ │ │ ├── fp_traits.hpp │ │ │ ├── gamma_inva.hpp │ │ │ ├── hypergeometric_0F1_bessel.hpp │ │ │ ├── hypergeometric_1F1_addition_theorems_on_z.hpp │ │ │ ├── hypergeometric_1F1_bessel.hpp │ │ │ ├── hypergeometric_1F1_by_ratios.hpp │ │ │ ├── hypergeometric_1F1_cf.hpp │ │ │ ├── hypergeometric_1F1_large_a.hpp │ │ │ ├── hypergeometric_1F1_large_abz.hpp │ │ │ ├── hypergeometric_1F1_negative_b_regions.hpp │ │ │ ├── hypergeometric_1F1_recurrence.hpp │ │ │ ├── hypergeometric_1F1_scaled_series.hpp │ │ │ ├── hypergeometric_1F1_small_a_negative_b_by_ratio.hpp │ │ │ ├── hypergeometric_asym.hpp │ │ │ ├── hypergeometric_cf.hpp │ │ │ ├── hypergeometric_pFq_checked_series.hpp │ │ │ ├── hypergeometric_pade.hpp │ │ │ ├── hypergeometric_rational.hpp │ │ │ ├── hypergeometric_separated_series.hpp │ │ │ ├── hypergeometric_series.hpp │ │ │ ├── ibeta_inv_ab.hpp │ │ │ ├── ibeta_inverse.hpp │ │ │ ├── iconv.hpp │ │ │ ├── igamma_inverse.hpp │ │ │ ├── igamma_large.hpp │ │ │ ├── lambert_w_lookup_table.ipp │ │ │ ├── lanczos_sse2.hpp │ │ │ ├── lgamma_small.hpp │ │ │ ├── polygamma.hpp │ │ │ ├── round_fwd.hpp │ │ │ ├── t_distribution_inv.hpp │ │ │ ├── unchecked_bernoulli.hpp │ │ │ └── unchecked_factorial.hpp │ │ ├── digamma.hpp │ │ ├── ellint_1.hpp │ │ ├── ellint_2.hpp │ │ ├── ellint_3.hpp │ │ ├── ellint_d.hpp │ │ ├── ellint_rc.hpp │ │ ├── ellint_rd.hpp │ │ ├── ellint_rf.hpp │ │ ├── ellint_rg.hpp │ │ ├── ellint_rj.hpp │ │ ├── erf.hpp │ │ ├── expint.hpp │ │ ├── expm1.hpp │ │ ├── factorials.hpp │ │ ├── fibonacci.hpp │ │ ├── fpclassify.hpp │ │ ├── gamma.hpp │ │ ├── gegenbauer.hpp │ │ ├── hankel.hpp │ │ ├── hermite.hpp │ │ ├── heuman_lambda.hpp │ │ ├── hypergeometric_0F1.hpp │ │ ├── hypergeometric_1F0.hpp │ │ ├── hypergeometric_1F1.hpp │ │ ├── hypergeometric_2F0.hpp │ │ ├── hypergeometric_pFq.hpp │ │ ├── hypot.hpp │ │ ├── jacobi.hpp │ │ ├── jacobi_elliptic.hpp │ │ ├── jacobi_theta.hpp │ │ ├── jacobi_zeta.hpp │ │ ├── laguerre.hpp │ │ ├── lambert_w.hpp │ │ ├── lanczos.hpp │ │ ├── legendre.hpp │ │ ├── legendre_stieltjes.hpp │ │ ├── log1p.hpp │ │ ├── logaddexp.hpp │ │ ├── logsumexp.hpp │ │ ├── math_fwd.hpp │ │ ├── modf.hpp │ │ ├── next.hpp │ │ ├── nonfinite_num_facets.hpp │ │ ├── owens_t.hpp │ │ ├── polygamma.hpp │ │ ├── pow.hpp │ │ ├── powm1.hpp │ │ ├── prime.hpp │ │ ├── relative_difference.hpp │ │ ├── round.hpp │ │ ├── rsqrt.hpp │ │ ├── sign.hpp │ │ ├── sin_pi.hpp │ │ ├── sinc.hpp │ │ ├── sinhc.hpp │ │ ├── spherical_harmonic.hpp │ │ ├── sqrt1pm1.hpp │ │ ├── trigamma.hpp │ │ ├── trunc.hpp │ │ ├── ulp.hpp │ │ └── zeta.hpp │ └── tools │ │ ├── agm.hpp │ │ ├── assert.hpp │ │ ├── atomic.hpp │ │ ├── big_constant.hpp │ │ ├── bivariate_statistics.hpp │ │ ├── centered_continued_fraction.hpp │ │ ├── cohen_acceleration.hpp │ │ ├── color_maps.hpp │ │ ├── complex.hpp │ │ ├── concepts.hpp │ │ ├── condition_numbers.hpp │ │ ├── config.hpp │ │ ├── convert_from_string.hpp │ │ ├── cubic_roots.hpp │ │ ├── cxx03_warn.hpp │ │ ├── detail │ │ ├── is_const_iterable.hpp │ │ ├── polynomial_horner1_10.hpp │ │ ├── polynomial_horner1_11.hpp │ │ ├── polynomial_horner1_12.hpp │ │ ├── polynomial_horner1_13.hpp │ │ ├── polynomial_horner1_14.hpp │ │ ├── polynomial_horner1_15.hpp │ │ ├── polynomial_horner1_16.hpp │ │ ├── polynomial_horner1_17.hpp │ │ ├── polynomial_horner1_18.hpp │ │ ├── polynomial_horner1_19.hpp │ │ ├── polynomial_horner1_2.hpp │ │ ├── polynomial_horner1_20.hpp │ │ ├── polynomial_horner1_3.hpp │ │ ├── polynomial_horner1_4.hpp │ │ ├── polynomial_horner1_5.hpp │ │ ├── polynomial_horner1_6.hpp │ │ ├── polynomial_horner1_7.hpp │ │ ├── polynomial_horner1_8.hpp │ │ ├── polynomial_horner1_9.hpp │ │ ├── polynomial_horner2_10.hpp │ │ ├── polynomial_horner2_11.hpp │ │ ├── polynomial_horner2_12.hpp │ │ ├── polynomial_horner2_13.hpp │ │ ├── polynomial_horner2_14.hpp │ │ ├── polynomial_horner2_15.hpp │ │ ├── polynomial_horner2_16.hpp │ │ ├── polynomial_horner2_17.hpp │ │ ├── polynomial_horner2_18.hpp │ │ ├── polynomial_horner2_19.hpp │ │ ├── polynomial_horner2_2.hpp │ │ ├── polynomial_horner2_20.hpp │ │ ├── polynomial_horner2_3.hpp │ │ ├── polynomial_horner2_4.hpp │ │ ├── polynomial_horner2_5.hpp │ │ ├── polynomial_horner2_6.hpp │ │ ├── polynomial_horner2_7.hpp │ │ ├── polynomial_horner2_8.hpp │ │ ├── polynomial_horner2_9.hpp │ │ ├── polynomial_horner3_10.hpp │ │ ├── polynomial_horner3_11.hpp │ │ ├── polynomial_horner3_12.hpp │ │ ├── polynomial_horner3_13.hpp │ │ ├── polynomial_horner3_14.hpp │ │ ├── polynomial_horner3_15.hpp │ │ ├── polynomial_horner3_16.hpp │ │ ├── polynomial_horner3_17.hpp │ │ ├── polynomial_horner3_18.hpp │ │ ├── polynomial_horner3_19.hpp │ │ ├── polynomial_horner3_2.hpp │ │ ├── polynomial_horner3_20.hpp │ │ ├── polynomial_horner3_3.hpp │ │ ├── polynomial_horner3_4.hpp │ │ ├── polynomial_horner3_5.hpp │ │ ├── polynomial_horner3_6.hpp │ │ ├── polynomial_horner3_7.hpp │ │ ├── polynomial_horner3_8.hpp │ │ ├── polynomial_horner3_9.hpp │ │ ├── rational_horner1_10.hpp │ │ ├── rational_horner1_11.hpp │ │ ├── rational_horner1_12.hpp │ │ ├── rational_horner1_13.hpp │ │ ├── rational_horner1_14.hpp │ │ ├── rational_horner1_15.hpp │ │ ├── rational_horner1_16.hpp │ │ ├── rational_horner1_17.hpp │ │ ├── rational_horner1_18.hpp │ │ ├── rational_horner1_19.hpp │ │ ├── rational_horner1_2.hpp │ │ ├── rational_horner1_20.hpp │ │ ├── rational_horner1_3.hpp │ │ ├── rational_horner1_4.hpp │ │ ├── rational_horner1_5.hpp │ │ ├── rational_horner1_6.hpp │ │ ├── rational_horner1_7.hpp │ │ ├── rational_horner1_8.hpp │ │ ├── rational_horner1_9.hpp │ │ ├── rational_horner2_10.hpp │ │ ├── rational_horner2_11.hpp │ │ ├── rational_horner2_12.hpp │ │ ├── rational_horner2_13.hpp │ │ ├── rational_horner2_14.hpp │ │ ├── rational_horner2_15.hpp │ │ ├── rational_horner2_16.hpp │ │ ├── rational_horner2_17.hpp │ │ ├── rational_horner2_18.hpp │ │ ├── rational_horner2_19.hpp │ │ ├── rational_horner2_2.hpp │ │ ├── rational_horner2_20.hpp │ │ ├── rational_horner2_3.hpp │ │ ├── rational_horner2_4.hpp │ │ ├── rational_horner2_5.hpp │ │ ├── rational_horner2_6.hpp │ │ ├── rational_horner2_7.hpp │ │ ├── rational_horner2_8.hpp │ │ ├── rational_horner2_9.hpp │ │ ├── rational_horner3_10.hpp │ │ ├── rational_horner3_11.hpp │ │ ├── rational_horner3_12.hpp │ │ ├── rational_horner3_13.hpp │ │ ├── rational_horner3_14.hpp │ │ ├── rational_horner3_15.hpp │ │ ├── rational_horner3_16.hpp │ │ ├── rational_horner3_17.hpp │ │ ├── rational_horner3_18.hpp │ │ ├── rational_horner3_19.hpp │ │ ├── rational_horner3_2.hpp │ │ ├── rational_horner3_20.hpp │ │ ├── rational_horner3_3.hpp │ │ ├── rational_horner3_4.hpp │ │ ├── rational_horner3_5.hpp │ │ ├── rational_horner3_6.hpp │ │ ├── rational_horner3_7.hpp │ │ ├── rational_horner3_8.hpp │ │ └── rational_horner3_9.hpp │ │ ├── engel_expansion.hpp │ │ ├── fraction.hpp │ │ ├── header_deprecated.hpp │ │ ├── is_constant_evaluated.hpp │ │ ├── is_detected.hpp │ │ ├── is_standalone.hpp │ │ ├── luroth_expansion.hpp │ │ ├── minima.hpp │ │ ├── mp.hpp │ │ ├── norms.hpp │ │ ├── nothrow.hpp │ │ ├── numerical_differentiation.hpp │ │ ├── polynomial.hpp │ │ ├── polynomial_gcd.hpp │ │ ├── precision.hpp │ │ ├── promotion.hpp │ │ ├── quartic_roots.hpp │ │ ├── random_vector.hpp │ │ ├── rational.hpp │ │ ├── real_cast.hpp │ │ ├── recurrence.hpp │ │ ├── roots.hpp │ │ ├── series.hpp │ │ ├── signal_statistics.hpp │ │ ├── simple_continued_fraction.hpp │ │ ├── stats.hpp │ │ ├── test_value.hpp │ │ ├── throw_exception.hpp │ │ ├── toms748_solve.hpp │ │ ├── traits.hpp │ │ ├── tuple.hpp │ │ ├── ulps_plot.hpp │ │ ├── univariate_statistics.hpp │ │ ├── user.hpp │ │ └── workaround.hpp │ ├── mpl │ ├── O1_size.hpp │ ├── O1_size_fwd.hpp │ ├── accumulate.hpp │ ├── advance.hpp │ ├── advance_fwd.hpp │ ├── alias.hpp │ ├── always.hpp │ ├── and.hpp │ ├── apply.hpp │ ├── apply_fwd.hpp │ ├── apply_wrap.hpp │ ├── arg.hpp │ ├── arg_fwd.hpp │ ├── arithmetic.hpp │ ├── as_sequence.hpp │ ├── assert.hpp │ ├── at.hpp │ ├── at_fwd.hpp │ ├── aux_ │ │ ├── O1_size_impl.hpp │ │ ├── adl_barrier.hpp │ │ ├── advance_backward.hpp │ │ ├── advance_forward.hpp │ │ ├── apply_1st.hpp │ │ ├── arg_typedef.hpp │ │ ├── arithmetic_op.hpp │ │ ├── arity.hpp │ │ ├── arity_spec.hpp │ │ ├── at_impl.hpp │ │ ├── back_impl.hpp │ │ ├── basic_bind.hpp │ │ ├── begin_end_impl.hpp │ │ ├── clear_impl.hpp │ │ ├── common_name_wknd.hpp │ │ ├── comparison_op.hpp │ │ ├── config │ │ │ ├── adl.hpp │ │ │ ├── arrays.hpp │ │ │ ├── bcc.hpp │ │ │ ├── bind.hpp │ │ │ ├── compiler.hpp │ │ │ ├── ctps.hpp │ │ │ ├── dependent_nttp.hpp │ │ │ ├── dmc_ambiguous_ctps.hpp │ │ │ ├── dtp.hpp │ │ │ ├── eti.hpp │ │ │ ├── forwarding.hpp │ │ │ ├── gcc.hpp │ │ │ ├── gpu.hpp │ │ │ ├── has_apply.hpp │ │ │ ├── has_xxx.hpp │ │ │ ├── integral.hpp │ │ │ ├── intel.hpp │ │ │ ├── lambda.hpp │ │ │ ├── msvc.hpp │ │ │ ├── msvc_typename.hpp │ │ │ ├── nttp.hpp │ │ │ ├── operators.hpp │ │ │ ├── overload_resolution.hpp │ │ │ ├── pp_counter.hpp │ │ │ ├── preprocessor.hpp │ │ │ ├── static_constant.hpp │ │ │ ├── ttp.hpp │ │ │ ├── typeof.hpp │ │ │ ├── use_preprocessed.hpp │ │ │ └── workaround.hpp │ │ ├── contains_impl.hpp │ │ ├── count_args.hpp │ │ ├── count_impl.hpp │ │ ├── empty_impl.hpp │ │ ├── erase_impl.hpp │ │ ├── erase_key_impl.hpp │ │ ├── filter_iter.hpp │ │ ├── find_if_pred.hpp │ │ ├── fold_impl.hpp │ │ ├── fold_impl_body.hpp │ │ ├── fold_op.hpp │ │ ├── fold_pred.hpp │ │ ├── front_impl.hpp │ │ ├── full_lambda.hpp │ │ ├── has_apply.hpp │ │ ├── has_begin.hpp │ │ ├── has_key_impl.hpp │ │ ├── has_rebind.hpp │ │ ├── has_size.hpp │ │ ├── has_tag.hpp │ │ ├── has_type.hpp │ │ ├── include_preprocessed.hpp │ │ ├── insert_impl.hpp │ │ ├── insert_range_impl.hpp │ │ ├── inserter_algorithm.hpp │ │ ├── integral_wrapper.hpp │ │ ├── is_msvc_eti_arg.hpp │ │ ├── iter_apply.hpp │ │ ├── iter_fold_if_impl.hpp │ │ ├── iter_fold_impl.hpp │ │ ├── iter_push_front.hpp │ │ ├── joint_iter.hpp │ │ ├── lambda_arity_param.hpp │ │ ├── lambda_no_ctps.hpp │ │ ├── lambda_spec.hpp │ │ ├── lambda_support.hpp │ │ ├── largest_int.hpp │ │ ├── logical_op.hpp │ │ ├── msvc_dtw.hpp │ │ ├── msvc_eti_base.hpp │ │ ├── msvc_is_class.hpp │ │ ├── msvc_never_true.hpp │ │ ├── msvc_type.hpp │ │ ├── na.hpp │ │ ├── na_assert.hpp │ │ ├── na_fwd.hpp │ │ ├── na_spec.hpp │ │ ├── nested_type_wknd.hpp │ │ ├── nttp_decl.hpp │ │ ├── numeric_cast_utils.hpp │ │ ├── numeric_op.hpp │ │ ├── order_impl.hpp │ │ ├── overload_names.hpp │ │ ├── partition_op.hpp │ │ ├── pop_back_impl.hpp │ │ ├── pop_front_impl.hpp │ │ ├── preprocessed │ │ │ ├── bcc │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── bcc551 │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── bcc_pre590 │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── dmc │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── gcc │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── msvc60 │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── msvc70 │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── mwcw │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── no_ctps │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ ├── no_ttp │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ │ └── plain │ │ │ │ ├── advance_backward.hpp │ │ │ │ ├── advance_forward.hpp │ │ │ │ ├── and.hpp │ │ │ │ ├── apply.hpp │ │ │ │ ├── apply_fwd.hpp │ │ │ │ ├── apply_wrap.hpp │ │ │ │ ├── arg.hpp │ │ │ │ ├── basic_bind.hpp │ │ │ │ ├── bind.hpp │ │ │ │ ├── bind_fwd.hpp │ │ │ │ ├── bitand.hpp │ │ │ │ ├── bitor.hpp │ │ │ │ ├── bitxor.hpp │ │ │ │ ├── deque.hpp │ │ │ │ ├── divides.hpp │ │ │ │ ├── equal_to.hpp │ │ │ │ ├── fold_impl.hpp │ │ │ │ ├── full_lambda.hpp │ │ │ │ ├── greater.hpp │ │ │ │ ├── greater_equal.hpp │ │ │ │ ├── inherit.hpp │ │ │ │ ├── iter_fold_if_impl.hpp │ │ │ │ ├── iter_fold_impl.hpp │ │ │ │ ├── lambda_no_ctps.hpp │ │ │ │ ├── less.hpp │ │ │ │ ├── less_equal.hpp │ │ │ │ ├── list.hpp │ │ │ │ ├── list_c.hpp │ │ │ │ ├── map.hpp │ │ │ │ ├── minus.hpp │ │ │ │ ├── modulus.hpp │ │ │ │ ├── not_equal_to.hpp │ │ │ │ ├── or.hpp │ │ │ │ ├── placeholders.hpp │ │ │ │ ├── plus.hpp │ │ │ │ ├── quote.hpp │ │ │ │ ├── reverse_fold_impl.hpp │ │ │ │ ├── reverse_iter_fold_impl.hpp │ │ │ │ ├── set.hpp │ │ │ │ ├── set_c.hpp │ │ │ │ ├── shift_left.hpp │ │ │ │ ├── shift_right.hpp │ │ │ │ ├── template_arity.hpp │ │ │ │ ├── times.hpp │ │ │ │ ├── unpack_args.hpp │ │ │ │ ├── vector.hpp │ │ │ │ └── vector_c.hpp │ │ ├── preprocessor │ │ │ ├── add.hpp │ │ │ ├── def_params_tail.hpp │ │ │ ├── default_params.hpp │ │ │ ├── enum.hpp │ │ │ ├── ext_params.hpp │ │ │ ├── filter_params.hpp │ │ │ ├── is_seq.hpp │ │ │ ├── params.hpp │ │ │ ├── partial_spec_params.hpp │ │ │ ├── range.hpp │ │ │ ├── repeat.hpp │ │ │ ├── sub.hpp │ │ │ ├── token_equal.hpp │ │ │ └── tuple.hpp │ │ ├── ptr_to_ref.hpp │ │ ├── push_back_impl.hpp │ │ ├── push_front_impl.hpp │ │ ├── range_c │ │ │ ├── O1_size.hpp │ │ │ ├── back.hpp │ │ │ ├── empty.hpp │ │ │ ├── front.hpp │ │ │ ├── iterator.hpp │ │ │ ├── size.hpp │ │ │ └── tag.hpp │ │ ├── reverse_fold_impl.hpp │ │ ├── reverse_fold_impl_body.hpp │ │ ├── reverse_iter_fold_impl.hpp │ │ ├── sequence_wrapper.hpp │ │ ├── shift_op.hpp │ │ ├── single_element_iter.hpp │ │ ├── size_impl.hpp │ │ ├── sort_impl.hpp │ │ ├── static_cast.hpp │ │ ├── template_arity.hpp │ │ ├── template_arity_fwd.hpp │ │ ├── test.hpp │ │ ├── test │ │ │ ├── assert.hpp │ │ │ ├── data.hpp │ │ │ └── test_case.hpp │ │ ├── traits_lambda_spec.hpp │ │ ├── transform_iter.hpp │ │ ├── type_wrapper.hpp │ │ ├── unwrap.hpp │ │ ├── value_wknd.hpp │ │ └── yes_no.hpp │ ├── back.hpp │ ├── back_fwd.hpp │ ├── back_inserter.hpp │ ├── base.hpp │ ├── begin.hpp │ ├── begin_end.hpp │ ├── begin_end_fwd.hpp │ ├── bind.hpp │ ├── bind_fwd.hpp │ ├── bitand.hpp │ ├── bitor.hpp │ ├── bitwise.hpp │ ├── bitxor.hpp │ ├── bool.hpp │ ├── bool_fwd.hpp │ ├── char.hpp │ ├── char_fwd.hpp │ ├── clear.hpp │ ├── clear_fwd.hpp │ ├── comparison.hpp │ ├── contains.hpp │ ├── contains_fwd.hpp │ ├── copy.hpp │ ├── copy_if.hpp │ ├── count.hpp │ ├── count_fwd.hpp │ ├── count_if.hpp │ ├── deque.hpp │ ├── deref.hpp │ ├── distance.hpp │ ├── distance_fwd.hpp │ ├── divides.hpp │ ├── empty.hpp │ ├── empty_base.hpp │ ├── empty_fwd.hpp │ ├── empty_sequence.hpp │ ├── end.hpp │ ├── equal.hpp │ ├── equal_to.hpp │ ├── erase.hpp │ ├── erase_fwd.hpp │ ├── erase_key.hpp │ ├── erase_key_fwd.hpp │ ├── eval_if.hpp │ ├── filter_view.hpp │ ├── find.hpp │ ├── find_if.hpp │ ├── fold.hpp │ ├── for_each.hpp │ ├── front.hpp │ ├── front_fwd.hpp │ ├── front_inserter.hpp │ ├── get_tag.hpp │ ├── greater.hpp │ ├── greater_equal.hpp │ ├── has_key.hpp │ ├── has_key_fwd.hpp │ ├── has_xxx.hpp │ ├── identity.hpp │ ├── if.hpp │ ├── index_if.hpp │ ├── index_of.hpp │ ├── inherit.hpp │ ├── inherit_linearly.hpp │ ├── insert.hpp │ ├── insert_fwd.hpp │ ├── insert_range.hpp │ ├── insert_range_fwd.hpp │ ├── inserter.hpp │ ├── int.hpp │ ├── int_fwd.hpp │ ├── integral_c.hpp │ ├── integral_c_fwd.hpp │ ├── integral_c_tag.hpp │ ├── is_placeholder.hpp │ ├── is_sequence.hpp │ ├── iter_fold.hpp │ ├── iter_fold_if.hpp │ ├── iterator_category.hpp │ ├── iterator_range.hpp │ ├── iterator_tags.hpp │ ├── joint_view.hpp │ ├── key_type.hpp │ ├── key_type_fwd.hpp │ ├── lambda.hpp │ ├── lambda_fwd.hpp │ ├── less.hpp │ ├── less_equal.hpp │ ├── limits │ │ ├── arity.hpp │ │ ├── list.hpp │ │ ├── map.hpp │ │ ├── set.hpp │ │ ├── string.hpp │ │ ├── unrolling.hpp │ │ └── vector.hpp │ ├── list.hpp │ ├── list │ │ ├── aux_ │ │ │ ├── O1_size.hpp │ │ │ ├── begin_end.hpp │ │ │ ├── clear.hpp │ │ │ ├── empty.hpp │ │ │ ├── front.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── item.hpp │ │ │ ├── iterator.hpp │ │ │ ├── numbered.hpp │ │ │ ├── numbered_c.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── preprocessed │ │ │ │ └── plain │ │ │ │ │ ├── list10.hpp │ │ │ │ │ ├── list10_c.hpp │ │ │ │ │ ├── list20.hpp │ │ │ │ │ ├── list20_c.hpp │ │ │ │ │ ├── list30.hpp │ │ │ │ │ ├── list30_c.hpp │ │ │ │ │ ├── list40.hpp │ │ │ │ │ ├── list40_c.hpp │ │ │ │ │ ├── list50.hpp │ │ │ │ │ └── list50_c.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── size.hpp │ │ │ └── tag.hpp │ │ ├── list0.hpp │ │ ├── list0_c.hpp │ │ ├── list10.hpp │ │ ├── list10_c.hpp │ │ ├── list20.hpp │ │ ├── list20_c.hpp │ │ ├── list30.hpp │ │ ├── list30_c.hpp │ │ ├── list40.hpp │ │ ├── list40_c.hpp │ │ ├── list50.hpp │ │ └── list50_c.hpp │ ├── list_c.hpp │ ├── logical.hpp │ ├── long.hpp │ ├── long_fwd.hpp │ ├── lower_bound.hpp │ ├── map.hpp │ ├── map │ │ ├── aux_ │ │ │ ├── at_impl.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── contains_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── item.hpp │ │ │ ├── iterator.hpp │ │ │ ├── key_type_impl.hpp │ │ │ ├── map0.hpp │ │ │ ├── numbered.hpp │ │ │ ├── preprocessed │ │ │ │ ├── no_ctps │ │ │ │ │ ├── map10.hpp │ │ │ │ │ ├── map20.hpp │ │ │ │ │ ├── map30.hpp │ │ │ │ │ ├── map40.hpp │ │ │ │ │ └── map50.hpp │ │ │ │ ├── plain │ │ │ │ │ ├── map10.hpp │ │ │ │ │ ├── map20.hpp │ │ │ │ │ ├── map30.hpp │ │ │ │ │ ├── map40.hpp │ │ │ │ │ └── map50.hpp │ │ │ │ └── typeof_based │ │ │ │ │ ├── map10.hpp │ │ │ │ │ ├── map20.hpp │ │ │ │ │ ├── map30.hpp │ │ │ │ │ ├── map40.hpp │ │ │ │ │ └── map50.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── tag.hpp │ │ │ └── value_type_impl.hpp │ │ ├── map0.hpp │ │ ├── map10.hpp │ │ ├── map20.hpp │ │ ├── map30.hpp │ │ ├── map40.hpp │ │ └── map50.hpp │ ├── math │ │ ├── fixed_c.hpp │ │ ├── is_even.hpp │ │ └── rational_c.hpp │ ├── max.hpp │ ├── max_element.hpp │ ├── min.hpp │ ├── min_element.hpp │ ├── min_max.hpp │ ├── minus.hpp │ ├── modulus.hpp │ ├── multiplies.hpp │ ├── multiset │ │ ├── aux_ │ │ │ ├── count_impl.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── item.hpp │ │ │ ├── multiset0.hpp │ │ │ └── tag.hpp │ │ └── multiset0.hpp │ ├── negate.hpp │ ├── next.hpp │ ├── next_prior.hpp │ ├── not.hpp │ ├── not_equal_to.hpp │ ├── numeric_cast.hpp │ ├── or.hpp │ ├── order.hpp │ ├── order_fwd.hpp │ ├── pair.hpp │ ├── pair_view.hpp │ ├── partition.hpp │ ├── placeholders.hpp │ ├── plus.hpp │ ├── pop_back.hpp │ ├── pop_back_fwd.hpp │ ├── pop_front.hpp │ ├── pop_front_fwd.hpp │ ├── print.hpp │ ├── prior.hpp │ ├── protect.hpp │ ├── push_back.hpp │ ├── push_back_fwd.hpp │ ├── push_front.hpp │ ├── push_front_fwd.hpp │ ├── quote.hpp │ ├── range_c.hpp │ ├── remove.hpp │ ├── remove_if.hpp │ ├── replace.hpp │ ├── replace_if.hpp │ ├── reverse.hpp │ ├── reverse_fold.hpp │ ├── reverse_iter_fold.hpp │ ├── same_as.hpp │ ├── sequence_tag.hpp │ ├── sequence_tag_fwd.hpp │ ├── set.hpp │ ├── set │ │ ├── aux_ │ │ │ ├── at_impl.hpp │ │ │ ├── begin_end_impl.hpp │ │ │ ├── clear_impl.hpp │ │ │ ├── empty_impl.hpp │ │ │ ├── erase_impl.hpp │ │ │ ├── erase_key_impl.hpp │ │ │ ├── has_key_impl.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── insert_impl.hpp │ │ │ ├── insert_range_impl.hpp │ │ │ ├── item.hpp │ │ │ ├── iterator.hpp │ │ │ ├── key_type_impl.hpp │ │ │ ├── numbered.hpp │ │ │ ├── numbered_c.hpp │ │ │ ├── preprocessed │ │ │ │ └── plain │ │ │ │ │ ├── set10.hpp │ │ │ │ │ ├── set10_c.hpp │ │ │ │ │ ├── set20.hpp │ │ │ │ │ ├── set20_c.hpp │ │ │ │ │ ├── set30.hpp │ │ │ │ │ ├── set30_c.hpp │ │ │ │ │ ├── set40.hpp │ │ │ │ │ ├── set40_c.hpp │ │ │ │ │ ├── set50.hpp │ │ │ │ │ └── set50_c.hpp │ │ │ ├── set0.hpp │ │ │ ├── size_impl.hpp │ │ │ ├── tag.hpp │ │ │ └── value_type_impl.hpp │ │ ├── set0.hpp │ │ ├── set0_c.hpp │ │ ├── set10.hpp │ │ ├── set10_c.hpp │ │ ├── set20.hpp │ │ ├── set20_c.hpp │ │ ├── set30.hpp │ │ ├── set30_c.hpp │ │ ├── set40.hpp │ │ ├── set40_c.hpp │ │ ├── set50.hpp │ │ └── set50_c.hpp │ ├── set_c.hpp │ ├── shift_left.hpp │ ├── shift_right.hpp │ ├── single_view.hpp │ ├── size.hpp │ ├── size_fwd.hpp │ ├── size_t.hpp │ ├── size_t_fwd.hpp │ ├── sizeof.hpp │ ├── sort.hpp │ ├── stable_partition.hpp │ ├── string.hpp │ ├── switch.hpp │ ├── tag.hpp │ ├── times.hpp │ ├── transform.hpp │ ├── transform_view.hpp │ ├── unique.hpp │ ├── unpack_args.hpp │ ├── upper_bound.hpp │ ├── value_type.hpp │ ├── value_type_fwd.hpp │ ├── vector.hpp │ ├── vector │ │ ├── aux_ │ │ │ ├── O1_size.hpp │ │ │ ├── at.hpp │ │ │ ├── back.hpp │ │ │ ├── begin_end.hpp │ │ │ ├── clear.hpp │ │ │ ├── empty.hpp │ │ │ ├── front.hpp │ │ │ ├── include_preprocessed.hpp │ │ │ ├── item.hpp │ │ │ ├── iterator.hpp │ │ │ ├── numbered.hpp │ │ │ ├── numbered_c.hpp │ │ │ ├── pop_back.hpp │ │ │ ├── pop_front.hpp │ │ │ ├── preprocessed │ │ │ │ ├── no_ctps │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ └── vector50_c.hpp │ │ │ │ ├── plain │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ └── vector50_c.hpp │ │ │ │ └── typeof_based │ │ │ │ │ ├── vector10.hpp │ │ │ │ │ ├── vector10_c.hpp │ │ │ │ │ ├── vector20.hpp │ │ │ │ │ ├── vector20_c.hpp │ │ │ │ │ ├── vector30.hpp │ │ │ │ │ ├── vector30_c.hpp │ │ │ │ │ ├── vector40.hpp │ │ │ │ │ ├── vector40_c.hpp │ │ │ │ │ ├── vector50.hpp │ │ │ │ │ └── vector50_c.hpp │ │ │ ├── push_back.hpp │ │ │ ├── push_front.hpp │ │ │ ├── size.hpp │ │ │ ├── tag.hpp │ │ │ └── vector0.hpp │ │ ├── vector0.hpp │ │ ├── vector0_c.hpp │ │ ├── vector10.hpp │ │ ├── vector10_c.hpp │ │ ├── vector20.hpp │ │ ├── vector20_c.hpp │ │ ├── vector30.hpp │ │ ├── vector30_c.hpp │ │ ├── vector40.hpp │ │ ├── vector40_c.hpp │ │ ├── vector50.hpp │ │ └── vector50_c.hpp │ ├── vector_c.hpp │ ├── void.hpp │ ├── void_fwd.hpp │ └── zip_view.hpp │ ├── predef │ ├── architecture.h │ ├── architecture │ │ ├── alpha.h │ │ ├── arm.h │ │ ├── blackfin.h │ │ ├── convex.h │ │ ├── e2k.h │ │ ├── ia64.h │ │ ├── loongarch.h │ │ ├── m68k.h │ │ ├── mips.h │ │ ├── parisc.h │ │ ├── ppc.h │ │ ├── ptx.h │ │ ├── pyramid.h │ │ ├── riscv.h │ │ ├── rs6k.h │ │ ├── sparc.h │ │ ├── superh.h │ │ ├── sys370.h │ │ ├── sys390.h │ │ ├── x86.h │ │ ├── x86 │ │ │ ├── 32.h │ │ │ └── 64.h │ │ └── z.h │ ├── compiler.h │ ├── compiler │ │ ├── borland.h │ │ ├── clang.h │ │ ├── comeau.h │ │ ├── compaq.h │ │ ├── diab.h │ │ ├── digitalmars.h │ │ ├── dignus.h │ │ ├── edg.h │ │ ├── ekopath.h │ │ ├── gcc.h │ │ ├── gcc_xml.h │ │ ├── greenhills.h │ │ ├── hp_acc.h │ │ ├── iar.h │ │ ├── ibm.h │ │ ├── intel.h │ │ ├── kai.h │ │ ├── llvm.h │ │ ├── metaware.h │ │ ├── metrowerks.h │ │ ├── microtec.h │ │ ├── mpw.h │ │ ├── nvcc.h │ │ ├── palm.h │ │ ├── pgi.h │ │ ├── sgi_mipspro.h │ │ ├── sunpro.h │ │ ├── tendra.h │ │ ├── visualc.h │ │ └── watcom.h │ ├── detail │ │ ├── _cassert.h │ │ ├── _exception.h │ │ ├── comp_detected.h │ │ ├── os_detected.h │ │ ├── platform_detected.h │ │ ├── test.h │ │ └── test_def.h │ ├── hardware.h │ ├── hardware │ │ ├── simd.h │ │ └── simd │ │ │ ├── arm.h │ │ │ ├── arm │ │ │ └── versions.h │ │ │ ├── ppc.h │ │ │ ├── ppc │ │ │ └── versions.h │ │ │ ├── x86.h │ │ │ ├── x86 │ │ │ └── versions.h │ │ │ ├── x86_amd.h │ │ │ └── x86_amd │ │ │ └── versions.h │ ├── language.h │ ├── language │ │ ├── cuda.h │ │ ├── objc.h │ │ ├── stdc.h │ │ └── stdcpp.h │ ├── library.h │ ├── library │ │ ├── c.h │ │ ├── c │ │ │ ├── _prefix.h │ │ │ ├── cloudabi.h │ │ │ ├── gnu.h │ │ │ ├── uc.h │ │ │ ├── vms.h │ │ │ └── zos.h │ │ ├── std.h │ │ └── std │ │ │ ├── _prefix.h │ │ │ ├── cxx.h │ │ │ ├── dinkumware.h │ │ │ ├── libcomo.h │ │ │ ├── modena.h │ │ │ ├── msl.h │ │ │ ├── roguewave.h │ │ │ ├── sgi.h │ │ │ ├── stdcpp3.h │ │ │ ├── stlport.h │ │ │ └── vacpp.h │ ├── make.h │ ├── os.h │ ├── os │ │ ├── aix.h │ │ ├── amigaos.h │ │ ├── beos.h │ │ ├── bsd.h │ │ ├── bsd │ │ │ ├── bsdi.h │ │ │ ├── dragonfly.h │ │ │ ├── free.h │ │ │ ├── net.h │ │ │ └── open.h │ │ ├── cygwin.h │ │ ├── haiku.h │ │ ├── hpux.h │ │ ├── ios.h │ │ ├── irix.h │ │ ├── linux.h │ │ ├── macos.h │ │ ├── os400.h │ │ ├── qnxnto.h │ │ ├── solaris.h │ │ ├── unix.h │ │ ├── vms.h │ │ └── windows.h │ ├── other.h │ ├── other │ │ ├── endian.h │ │ ├── wordsize.h │ │ └── workaround.h │ ├── platform.h │ ├── platform │ │ ├── android.h │ │ ├── cloudabi.h │ │ ├── ios.h │ │ ├── mingw.h │ │ ├── mingw32.h │ │ ├── mingw64.h │ │ ├── windows_desktop.h │ │ ├── windows_phone.h │ │ ├── windows_runtime.h │ │ ├── windows_server.h │ │ ├── windows_store.h │ │ ├── windows_system.h │ │ └── windows_uwp.h │ ├── version.h │ └── version_number.h │ ├── preprocessor │ ├── arithmetic.hpp │ ├── arithmetic │ │ ├── add.hpp │ │ ├── dec.hpp │ │ ├── detail │ │ │ ├── div_base.hpp │ │ │ ├── is_1_number.hpp │ │ │ ├── is_maximum_number.hpp │ │ │ ├── is_minimum_number.hpp │ │ │ └── maximum_number.hpp │ │ ├── div.hpp │ │ ├── inc.hpp │ │ ├── limits │ │ │ ├── dec_1024.hpp │ │ │ ├── dec_256.hpp │ │ │ ├── dec_512.hpp │ │ │ ├── inc_1024.hpp │ │ │ ├── inc_256.hpp │ │ │ └── inc_512.hpp │ │ ├── mod.hpp │ │ ├── mul.hpp │ │ └── sub.hpp │ ├── array.hpp │ ├── array │ │ ├── data.hpp │ │ ├── detail │ │ │ └── get_data.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ ├── assert_msg.hpp │ ├── cat.hpp │ ├── comma.hpp │ ├── comma_if.hpp │ ├── comparison.hpp │ ├── comparison │ │ ├── equal.hpp │ │ ├── greater.hpp │ │ ├── greater_equal.hpp │ │ ├── less.hpp │ │ ├── less_equal.hpp │ │ ├── limits │ │ │ ├── not_equal_1024.hpp │ │ │ ├── not_equal_256.hpp │ │ │ └── not_equal_512.hpp │ │ └── not_equal.hpp │ ├── config │ │ ├── config.hpp │ │ └── limits.hpp │ ├── control.hpp │ ├── control │ │ ├── deduce_d.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── while.hpp │ │ │ ├── edg │ │ │ │ ├── limits │ │ │ │ │ ├── while_1024.hpp │ │ │ │ │ ├── while_256.hpp │ │ │ │ │ └── while_512.hpp │ │ │ │ └── while.hpp │ │ │ ├── limits │ │ │ │ ├── while_1024.hpp │ │ │ │ ├── while_256.hpp │ │ │ │ └── while_512.hpp │ │ │ ├── msvc │ │ │ │ └── while.hpp │ │ │ └── while.hpp │ │ ├── expr_if.hpp │ │ ├── expr_iif.hpp │ │ ├── if.hpp │ │ ├── iif.hpp │ │ ├── limits │ │ │ ├── while_1024.hpp │ │ │ ├── while_256.hpp │ │ │ └── while_512.hpp │ │ └── while.hpp │ ├── debug.hpp │ ├── debug │ │ ├── assert.hpp │ │ ├── error.hpp │ │ └── line.hpp │ ├── dec.hpp │ ├── detail │ │ ├── auto_rec.hpp │ │ ├── check.hpp │ │ ├── dmc │ │ │ └── auto_rec.hpp │ │ ├── is_binary.hpp │ │ ├── is_nullary.hpp │ │ ├── is_unary.hpp │ │ ├── limits │ │ │ ├── auto_rec_1024.hpp │ │ │ ├── auto_rec_256.hpp │ │ │ └── auto_rec_512.hpp │ │ ├── null.hpp │ │ └── split.hpp │ ├── empty.hpp │ ├── enum.hpp │ ├── enum_params.hpp │ ├── enum_params_with_a_default.hpp │ ├── enum_params_with_defaults.hpp │ ├── enum_shifted.hpp │ ├── enum_shifted_params.hpp │ ├── expand.hpp │ ├── expr_if.hpp │ ├── facilities.hpp │ ├── facilities │ │ ├── apply.hpp │ │ ├── check_empty.hpp │ │ ├── detail │ │ │ └── is_empty.hpp │ │ ├── empty.hpp │ │ ├── expand.hpp │ │ ├── identity.hpp │ │ ├── intercept.hpp │ │ ├── is_1.hpp │ │ ├── is_empty.hpp │ │ ├── is_empty_or_1.hpp │ │ ├── is_empty_variadic.hpp │ │ ├── limits │ │ │ ├── intercept_1024.hpp │ │ │ ├── intercept_256.hpp │ │ │ └── intercept_512.hpp │ │ ├── overload.hpp │ │ └── va_opt.hpp │ ├── for.hpp │ ├── identity.hpp │ ├── if.hpp │ ├── inc.hpp │ ├── iterate.hpp │ ├── iteration.hpp │ ├── iteration │ │ ├── detail │ │ │ ├── bounds │ │ │ │ ├── lower1.hpp │ │ │ │ ├── lower2.hpp │ │ │ │ ├── lower3.hpp │ │ │ │ ├── lower4.hpp │ │ │ │ ├── lower5.hpp │ │ │ │ ├── upper1.hpp │ │ │ │ ├── upper2.hpp │ │ │ │ ├── upper3.hpp │ │ │ │ ├── upper4.hpp │ │ │ │ └── upper5.hpp │ │ │ ├── finish.hpp │ │ │ ├── iter │ │ │ │ ├── forward1.hpp │ │ │ │ ├── forward2.hpp │ │ │ │ ├── forward3.hpp │ │ │ │ ├── forward4.hpp │ │ │ │ ├── forward5.hpp │ │ │ │ ├── limits │ │ │ │ │ ├── forward1_1024.hpp │ │ │ │ │ ├── forward1_256.hpp │ │ │ │ │ ├── forward1_512.hpp │ │ │ │ │ ├── forward2_1024.hpp │ │ │ │ │ ├── forward2_256.hpp │ │ │ │ │ ├── forward2_512.hpp │ │ │ │ │ ├── forward3_1024.hpp │ │ │ │ │ ├── forward3_256.hpp │ │ │ │ │ ├── forward3_512.hpp │ │ │ │ │ ├── forward4_1024.hpp │ │ │ │ │ ├── forward4_256.hpp │ │ │ │ │ ├── forward4_512.hpp │ │ │ │ │ ├── forward5_1024.hpp │ │ │ │ │ ├── forward5_256.hpp │ │ │ │ │ ├── forward5_512.hpp │ │ │ │ │ ├── reverse1_1024.hpp │ │ │ │ │ ├── reverse1_256.hpp │ │ │ │ │ ├── reverse1_512.hpp │ │ │ │ │ ├── reverse2_1024.hpp │ │ │ │ │ ├── reverse2_256.hpp │ │ │ │ │ ├── reverse2_512.hpp │ │ │ │ │ ├── reverse3_1024.hpp │ │ │ │ │ ├── reverse3_256.hpp │ │ │ │ │ ├── reverse3_512.hpp │ │ │ │ │ ├── reverse4_1024.hpp │ │ │ │ │ ├── reverse4_256.hpp │ │ │ │ │ ├── reverse4_512.hpp │ │ │ │ │ ├── reverse5_1024.hpp │ │ │ │ │ ├── reverse5_256.hpp │ │ │ │ │ └── reverse5_512.hpp │ │ │ │ ├── reverse1.hpp │ │ │ │ ├── reverse2.hpp │ │ │ │ ├── reverse3.hpp │ │ │ │ ├── reverse4.hpp │ │ │ │ └── reverse5.hpp │ │ │ ├── limits │ │ │ │ ├── local_1024.hpp │ │ │ │ ├── local_256.hpp │ │ │ │ ├── local_512.hpp │ │ │ │ ├── rlocal_1024.hpp │ │ │ │ ├── rlocal_256.hpp │ │ │ │ └── rlocal_512.hpp │ │ │ ├── local.hpp │ │ │ ├── rlocal.hpp │ │ │ ├── self.hpp │ │ │ └── start.hpp │ │ ├── iterate.hpp │ │ ├── local.hpp │ │ └── self.hpp │ ├── library.hpp │ ├── limits.hpp │ ├── list.hpp │ ├── list │ │ ├── adt.hpp │ │ ├── append.hpp │ │ ├── at.hpp │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── fold_left.hpp │ │ │ ├── edg │ │ │ │ ├── fold_left.hpp │ │ │ │ ├── fold_right.hpp │ │ │ │ └── limits │ │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ │ ├── fold_left_256.hpp │ │ │ │ │ ├── fold_left_512.hpp │ │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ │ ├── fold_right_256.hpp │ │ │ │ │ └── fold_right_512.hpp │ │ │ ├── fold_left.hpp │ │ │ ├── fold_right.hpp │ │ │ └── limits │ │ │ │ ├── fold_left_1024.hpp │ │ │ │ ├── fold_left_256.hpp │ │ │ │ ├── fold_left_512.hpp │ │ │ │ ├── fold_right_1024.hpp │ │ │ │ ├── fold_right_256.hpp │ │ │ │ └── fold_right_512.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── limits │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ └── fold_left_512.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_seq.hpp │ │ ├── to_tuple.hpp │ │ └── transform.hpp │ ├── logical.hpp │ ├── logical │ │ ├── and.hpp │ │ ├── bitand.hpp │ │ ├── bitnor.hpp │ │ ├── bitor.hpp │ │ ├── bitxor.hpp │ │ ├── bool.hpp │ │ ├── compl.hpp │ │ ├── limits │ │ │ ├── bool_1024.hpp │ │ │ ├── bool_256.hpp │ │ │ └── bool_512.hpp │ │ ├── nor.hpp │ │ ├── not.hpp │ │ ├── or.hpp │ │ └── xor.hpp │ ├── max.hpp │ ├── min.hpp │ ├── punctuation.hpp │ ├── punctuation │ │ ├── comma.hpp │ │ ├── comma_if.hpp │ │ ├── detail │ │ │ └── is_begin_parens.hpp │ │ ├── is_begin_parens.hpp │ │ ├── paren.hpp │ │ ├── paren_if.hpp │ │ └── remove_parens.hpp │ ├── repeat.hpp │ ├── repeat_2nd.hpp │ ├── repeat_3rd.hpp │ ├── repeat_from_to.hpp │ ├── repeat_from_to_2nd.hpp │ ├── repeat_from_to_3rd.hpp │ ├── repetition.hpp │ ├── repetition │ │ ├── deduce_r.hpp │ │ ├── deduce_z.hpp │ │ ├── detail │ │ │ ├── dmc │ │ │ │ └── for.hpp │ │ │ ├── edg │ │ │ │ ├── for.hpp │ │ │ │ └── limits │ │ │ │ │ ├── for_1024.hpp │ │ │ │ │ ├── for_256.hpp │ │ │ │ │ └── for_512.hpp │ │ │ ├── for.hpp │ │ │ ├── limits │ │ │ │ ├── for_1024.hpp │ │ │ │ ├── for_256.hpp │ │ │ │ └── for_512.hpp │ │ │ └── msvc │ │ │ │ └── for.hpp │ │ ├── enum.hpp │ │ ├── enum_binary_params.hpp │ │ ├── enum_params.hpp │ │ ├── enum_params_with_a_default.hpp │ │ ├── enum_params_with_defaults.hpp │ │ ├── enum_shifted.hpp │ │ ├── enum_shifted_binary_params.hpp │ │ ├── enum_shifted_params.hpp │ │ ├── enum_trailing.hpp │ │ ├── enum_trailing_binary_params.hpp │ │ ├── enum_trailing_params.hpp │ │ ├── for.hpp │ │ ├── limits │ │ │ ├── for_1024.hpp │ │ │ ├── for_256.hpp │ │ │ ├── for_512.hpp │ │ │ ├── repeat_1024.hpp │ │ │ ├── repeat_256.hpp │ │ │ └── repeat_512.hpp │ │ ├── repeat.hpp │ │ └── repeat_from_to.hpp │ ├── selection.hpp │ ├── selection │ │ ├── max.hpp │ │ └── min.hpp │ ├── seq.hpp │ ├── seq │ │ ├── cat.hpp │ │ ├── detail │ │ │ ├── binary_transform.hpp │ │ │ ├── is_empty.hpp │ │ │ ├── limits │ │ │ │ ├── split_1024.hpp │ │ │ │ ├── split_256.hpp │ │ │ │ └── split_512.hpp │ │ │ ├── split.hpp │ │ │ └── to_list_msvc.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── filter.hpp │ │ ├── first_n.hpp │ │ ├── fold_left.hpp │ │ ├── fold_right.hpp │ │ ├── for_each.hpp │ │ ├── for_each_i.hpp │ │ ├── for_each_product.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── elem_1024.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_512.hpp │ │ │ ├── enum_1024.hpp │ │ │ ├── enum_256.hpp │ │ │ ├── enum_512.hpp │ │ │ ├── fold_left_1024.hpp │ │ │ ├── fold_left_256.hpp │ │ │ ├── fold_left_512.hpp │ │ │ ├── fold_right_1024.hpp │ │ │ ├── fold_right_256.hpp │ │ │ ├── fold_right_512.hpp │ │ │ ├── size_1024.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_512.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── rest_n.hpp │ │ ├── reverse.hpp │ │ ├── seq.hpp │ │ ├── size.hpp │ │ ├── subseq.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_tuple.hpp │ │ ├── transform.hpp │ │ └── variadic_seq_to_seq.hpp │ ├── slot.hpp │ ├── slot │ │ ├── counter.hpp │ │ ├── detail │ │ │ ├── counter.hpp │ │ │ ├── def.hpp │ │ │ ├── shared.hpp │ │ │ ├── slot1.hpp │ │ │ ├── slot2.hpp │ │ │ ├── slot3.hpp │ │ │ ├── slot4.hpp │ │ │ └── slot5.hpp │ │ └── slot.hpp │ ├── stringize.hpp │ ├── tuple.hpp │ ├── tuple │ │ ├── detail │ │ │ └── is_single_return.hpp │ │ ├── eat.hpp │ │ ├── elem.hpp │ │ ├── enum.hpp │ │ ├── insert.hpp │ │ ├── limits │ │ │ ├── reverse_128.hpp │ │ │ ├── reverse_256.hpp │ │ │ ├── reverse_64.hpp │ │ │ ├── to_list_128.hpp │ │ │ ├── to_list_256.hpp │ │ │ ├── to_list_64.hpp │ │ │ ├── to_seq_128.hpp │ │ │ ├── to_seq_256.hpp │ │ │ └── to_seq_64.hpp │ │ ├── pop_back.hpp │ │ ├── pop_front.hpp │ │ ├── push_back.hpp │ │ ├── push_front.hpp │ │ ├── rem.hpp │ │ ├── remove.hpp │ │ ├── replace.hpp │ │ ├── reverse.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ └── to_seq.hpp │ ├── variadic.hpp │ ├── variadic │ │ ├── detail │ │ │ ├── has_opt.hpp │ │ │ └── is_single_return.hpp │ │ ├── elem.hpp │ │ ├── has_opt.hpp │ │ ├── limits │ │ │ ├── elem_128.hpp │ │ │ ├── elem_256.hpp │ │ │ ├── elem_64.hpp │ │ │ ├── size_128.hpp │ │ │ ├── size_256.hpp │ │ │ └── size_64.hpp │ │ ├── size.hpp │ │ ├── to_array.hpp │ │ ├── to_list.hpp │ │ ├── to_seq.hpp │ │ └── to_tuple.hpp │ ├── while.hpp │ └── wstringize.hpp │ ├── static_assert.hpp │ ├── system │ ├── api_config.hpp │ ├── config.hpp │ ├── cygwin_error.hpp │ ├── detail │ │ ├── append_int.hpp │ │ ├── cerrno.hpp │ │ ├── config.hpp │ │ ├── enable_if.hpp │ │ ├── errc.hpp │ │ ├── error_category.hpp │ │ ├── error_category_impl.hpp │ │ ├── error_code.hpp │ │ ├── error_condition.hpp │ │ ├── generic_category.hpp │ │ ├── generic_category_message.hpp │ │ ├── interop_category.hpp │ │ ├── is_same.hpp │ │ ├── snprintf.hpp │ │ ├── std_category.hpp │ │ ├── std_category_impl.hpp │ │ ├── system_category.hpp │ │ ├── system_category_condition_win32.hpp │ │ ├── system_category_impl.hpp │ │ ├── system_category_message.hpp │ │ ├── system_category_message_win32.hpp │ │ └── throws.hpp │ ├── errc.hpp │ ├── error_category.hpp │ ├── error_code.hpp │ ├── error_condition.hpp │ ├── generic_category.hpp │ ├── is_error_code_enum.hpp │ ├── is_error_condition_enum.hpp │ ├── linux_error.hpp │ ├── result.hpp │ ├── system_category.hpp │ ├── system_error.hpp │ └── windows_error.hpp │ ├── throw_exception.hpp │ ├── type_traits │ ├── add_const.hpp │ ├── add_cv.hpp │ ├── add_lvalue_reference.hpp │ ├── add_pointer.hpp │ ├── add_reference.hpp │ ├── add_rvalue_reference.hpp │ ├── add_volatile.hpp │ ├── aligned_storage.hpp │ ├── alignment_of.hpp │ ├── alignment_traits.hpp │ ├── arithmetic_traits.hpp │ ├── array_traits.hpp │ ├── broken_compiler_spec.hpp │ ├── common_type.hpp │ ├── composite_traits.hpp │ ├── conditional.hpp │ ├── config.hpp │ ├── conjunction.hpp │ ├── conversion_traits.hpp │ ├── copy_cv.hpp │ ├── copy_cv_ref.hpp │ ├── copy_reference.hpp │ ├── cv_traits.hpp │ ├── decay.hpp │ ├── declval.hpp │ ├── detail │ │ ├── bool_trait_def.hpp │ │ ├── bool_trait_undef.hpp │ │ ├── common_arithmetic_type.hpp │ │ ├── common_type_impl.hpp │ │ ├── composite_member_pointer_type.hpp │ │ ├── composite_pointer_type.hpp │ │ ├── config.hpp │ │ ├── detector.hpp │ │ ├── has_binary_operator.hpp │ │ ├── has_postfix_operator.hpp │ │ ├── has_prefix_operator.hpp │ │ ├── ice_and.hpp │ │ ├── ice_eq.hpp │ │ ├── ice_not.hpp │ │ ├── ice_or.hpp │ │ ├── is_function_cxx_03.hpp │ │ ├── is_function_cxx_11.hpp │ │ ├── is_function_msvc10_fix.hpp │ │ ├── is_function_ptr_helper.hpp │ │ ├── is_function_ptr_tester.hpp │ │ ├── is_likely_lambda.hpp │ │ ├── is_mem_fun_pointer_impl.hpp │ │ ├── is_mem_fun_pointer_tester.hpp │ │ ├── is_member_function_pointer_cxx_03.hpp │ │ ├── is_member_function_pointer_cxx_11.hpp │ │ ├── is_rvalue_reference_msvc10_fix.hpp │ │ ├── mp_defer.hpp │ │ ├── template_arity_spec.hpp │ │ └── yes_no_type.hpp │ ├── detected.hpp │ ├── detected_or.hpp │ ├── disjunction.hpp │ ├── enable_if.hpp │ ├── extent.hpp │ ├── floating_point_promotion.hpp │ ├── function_traits.hpp │ ├── has_bit_and.hpp │ ├── has_bit_and_assign.hpp │ ├── has_bit_or.hpp │ ├── has_bit_or_assign.hpp │ ├── has_bit_xor.hpp │ ├── has_bit_xor_assign.hpp │ ├── has_complement.hpp │ ├── has_dereference.hpp │ ├── has_divides.hpp │ ├── has_divides_assign.hpp │ ├── has_equal_to.hpp │ ├── has_greater.hpp │ ├── has_greater_equal.hpp │ ├── has_left_shift.hpp │ ├── has_left_shift_assign.hpp │ ├── has_less.hpp │ ├── has_less_equal.hpp │ ├── has_logical_and.hpp │ ├── has_logical_not.hpp │ ├── has_logical_or.hpp │ ├── has_minus.hpp │ ├── has_minus_assign.hpp │ ├── has_modulus.hpp │ ├── has_modulus_assign.hpp │ ├── has_multiplies.hpp │ ├── has_multiplies_assign.hpp │ ├── has_negate.hpp │ ├── has_new_operator.hpp │ ├── has_not_equal_to.hpp │ ├── has_nothrow_assign.hpp │ ├── has_nothrow_constructor.hpp │ ├── has_nothrow_copy.hpp │ ├── has_nothrow_destructor.hpp │ ├── has_operator.hpp │ ├── has_plus.hpp │ ├── has_plus_assign.hpp │ ├── has_post_decrement.hpp │ ├── has_post_increment.hpp │ ├── has_pre_decrement.hpp │ ├── has_pre_increment.hpp │ ├── has_right_shift.hpp │ ├── has_right_shift_assign.hpp │ ├── has_trivial_assign.hpp │ ├── has_trivial_constructor.hpp │ ├── has_trivial_copy.hpp │ ├── has_trivial_destructor.hpp │ ├── has_trivial_move_assign.hpp │ ├── has_trivial_move_constructor.hpp │ ├── has_unary_minus.hpp │ ├── has_unary_plus.hpp │ ├── has_virtual_destructor.hpp │ ├── ice.hpp │ ├── integral_constant.hpp │ ├── integral_promotion.hpp │ ├── intrinsics.hpp │ ├── is_abstract.hpp │ ├── is_arithmetic.hpp │ ├── is_array.hpp │ ├── is_assignable.hpp │ ├── is_base_and_derived.hpp │ ├── is_base_of.hpp │ ├── is_base_of_tr1.hpp │ ├── is_bounded_array.hpp │ ├── is_class.hpp │ ├── is_complete.hpp │ ├── is_complex.hpp │ ├── is_compound.hpp │ ├── is_const.hpp │ ├── is_constructible.hpp │ ├── is_convertible.hpp │ ├── is_copy_assignable.hpp │ ├── is_copy_constructible.hpp │ ├── is_default_constructible.hpp │ ├── is_destructible.hpp │ ├── is_detected.hpp │ ├── is_detected_convertible.hpp │ ├── is_detected_exact.hpp │ ├── is_empty.hpp │ ├── is_enum.hpp │ ├── is_final.hpp │ ├── is_float.hpp │ ├── is_floating_point.hpp │ ├── is_function.hpp │ ├── is_fundamental.hpp │ ├── is_integral.hpp │ ├── is_list_constructible.hpp │ ├── is_lvalue_reference.hpp │ ├── is_member_function_pointer.hpp │ ├── is_member_object_pointer.hpp │ ├── is_member_pointer.hpp │ ├── is_noncopyable.hpp │ ├── is_nothrow_move_assignable.hpp │ ├── is_nothrow_move_constructible.hpp │ ├── is_nothrow_swappable.hpp │ ├── is_object.hpp │ ├── is_pod.hpp │ ├── is_pointer.hpp │ ├── is_polymorphic.hpp │ ├── is_reference.hpp │ ├── is_rvalue_reference.hpp │ ├── is_same.hpp │ ├── is_scalar.hpp │ ├── is_scoped_enum.hpp │ ├── is_signed.hpp │ ├── is_stateless.hpp │ ├── is_trivially_copyable.hpp │ ├── is_unbounded_array.hpp │ ├── is_union.hpp │ ├── is_unscoped_enum.hpp │ ├── is_unsigned.hpp │ ├── is_virtual_base_of.hpp │ ├── is_void.hpp │ ├── is_volatile.hpp │ ├── make_signed.hpp │ ├── make_unsigned.hpp │ ├── make_void.hpp │ ├── negation.hpp │ ├── nonesuch.hpp │ ├── object_traits.hpp │ ├── promote.hpp │ ├── rank.hpp │ ├── reference_traits.hpp │ ├── remove_all_extents.hpp │ ├── remove_bounds.hpp │ ├── remove_const.hpp │ ├── remove_cv.hpp │ ├── remove_cv_ref.hpp │ ├── remove_extent.hpp │ ├── remove_pointer.hpp │ ├── remove_reference.hpp │ ├── remove_volatile.hpp │ ├── same_traits.hpp │ ├── transform_traits.hpp │ ├── type_identity.hpp │ └── type_with_alignment.hpp │ ├── utility │ ├── addressof.hpp │ ├── base_from_member.hpp │ ├── binary.hpp │ ├── compare_pointees.hpp │ ├── declval.hpp │ ├── detail │ │ ├── in_place_factory_prefix.hpp │ │ ├── in_place_factory_suffix.hpp │ │ ├── minstd_rand.hpp │ │ ├── result_of_iterate.hpp │ │ └── result_of_variadic.hpp │ ├── enable_if.hpp │ ├── explicit_operator_bool.hpp │ ├── identity_type.hpp │ ├── in_place_factory.hpp │ ├── result_of.hpp │ ├── string_ref.hpp │ ├── string_ref_fwd.hpp │ ├── string_view.hpp │ ├── string_view_fwd.hpp │ ├── swap.hpp │ ├── typed_in_place_factory.hpp │ └── value_init.hpp │ └── version.hpp ├── docs ├── Makefile ├── _static │ └── default.css ├── _templates │ └── layout.html ├── algorithms.rst ├── code.rst ├── code_rgrid.rst ├── code_tmesh.rst ├── command_line.md ├── conf.py ├── getting_started.rst ├── images │ ├── accuracy_vs_cpu_dspm.pdf │ ├── accuracy_vs_cpu_dspm.png │ ├── accuracy_vs_cpu_fsm.pdf │ ├── accuracy_vs_cpu_fsm.png │ ├── accuracy_vs_cpu_gc.pdf │ ├── accuracy_vs_cpu_gc.png │ ├── accuracy_vs_cpu_gf.pdf │ ├── accuracy_vs_cpu_gf.png │ ├── accuracy_vs_cpu_gm.pdf │ ├── accuracy_vs_cpu_gm.png │ ├── accuracy_vs_cpu_lc.pdf │ ├── accuracy_vs_cpu_lc.png │ ├── accuracy_vs_cpu_lf.pdf │ ├── accuracy_vs_cpu_lf.png │ ├── accuracy_vs_cpu_lm.pdf │ ├── accuracy_vs_cpu_lm.png │ ├── accuracy_vs_cpu_spm.pdf │ ├── accuracy_vs_cpu_spm.png │ ├── discr1.pdf │ ├── discr1.png │ ├── discr2.pdf │ ├── discr2.png │ ├── figure02.pdf │ ├── figure02.png │ ├── gradient_coarse.png │ ├── gradient_fine.png │ ├── gradient_medium.png │ ├── layers_coarse.png │ ├── layers_fine.png │ ├── layers_medium.png │ ├── spm_rp.pdf │ ├── spm_rp.png │ ├── spm_rp_bw.pdf │ ├── spm_rp_bw.png │ ├── spm_rp_bw0.pdf │ ├── spm_rp_bw0.png │ ├── spm_rp_bw1.pdf │ ├── spm_rp_bw1.png │ ├── spm_rp_bw2.pdf │ ├── spm_rp_bw2.png │ ├── spm_rp_bw3.pdf │ ├── spm_rp_bw3.png │ ├── spm_rp_bw4.pdf │ └── spm_rp_bw4.png ├── index.rst ├── make.bat ├── model_discretization.rst ├── performance.rst ├── references.rst └── requirements.txt ├── eigen-3.4.0 ├── COPYING.APACHE ├── COPYING.BSD ├── COPYING.GPL ├── COPYING.LGPL ├── COPYING.MINPACK ├── COPYING.MPL2 ├── COPYING.README ├── CTestConfig.cmake ├── CTestCustom.cmake.in ├── Eigen │ ├── Cholesky │ ├── CholmodSupport │ ├── Core │ ├── Dense │ ├── Eigen │ ├── Eigenvalues │ ├── Geometry │ ├── Householder │ ├── IterativeLinearSolvers │ ├── Jacobi │ ├── KLUSupport │ ├── LU │ ├── MetisSupport │ ├── OrderingMethods │ ├── PaStiXSupport │ ├── PardisoSupport │ ├── QR │ ├── QtAlignedMalloc │ ├── SPQRSupport │ ├── SVD │ ├── Sparse │ ├── SparseCholesky │ ├── SparseCore │ ├── SparseLU │ ├── SparseQR │ ├── StdDeque │ ├── StdList │ ├── StdVector │ ├── SuperLUSupport │ ├── UmfPackSupport │ └── src │ │ ├── Cholesky │ │ ├── LDLT.h │ │ ├── LLT.h │ │ └── LLT_LAPACKE.h │ │ ├── CholmodSupport │ │ └── CholmodSupport.h │ │ ├── Core │ │ ├── ArithmeticSequence.h │ │ ├── Array.h │ │ ├── ArrayBase.h │ │ ├── ArrayWrapper.h │ │ ├── Assign.h │ │ ├── AssignEvaluator.h │ │ ├── Assign_MKL.h │ │ ├── BandMatrix.h │ │ ├── Block.h │ │ ├── BooleanRedux.h │ │ ├── CommaInitializer.h │ │ ├── ConditionEstimator.h │ │ ├── CoreEvaluators.h │ │ ├── CoreIterators.h │ │ ├── CwiseBinaryOp.h │ │ ├── CwiseNullaryOp.h │ │ ├── CwiseTernaryOp.h │ │ ├── CwiseUnaryOp.h │ │ ├── CwiseUnaryView.h │ │ ├── DenseBase.h │ │ ├── DenseCoeffsBase.h │ │ ├── DenseStorage.h │ │ ├── Diagonal.h │ │ ├── DiagonalMatrix.h │ │ ├── DiagonalProduct.h │ │ ├── Dot.h │ │ ├── EigenBase.h │ │ ├── ForceAlignedAccess.h │ │ ├── Fuzzy.h │ │ ├── GeneralProduct.h │ │ ├── GenericPacketMath.h │ │ ├── GlobalFunctions.h │ │ ├── IO.h │ │ ├── IndexedView.h │ │ ├── Inverse.h │ │ ├── Map.h │ │ ├── MapBase.h │ │ ├── MathFunctions.h │ │ ├── MathFunctionsImpl.h │ │ ├── Matrix.h │ │ ├── MatrixBase.h │ │ ├── NestByValue.h │ │ ├── NoAlias.h │ │ ├── NumTraits.h │ │ ├── PartialReduxEvaluator.h │ │ ├── PermutationMatrix.h │ │ ├── PlainObjectBase.h │ │ ├── Product.h │ │ ├── ProductEvaluators.h │ │ ├── Random.h │ │ ├── Redux.h │ │ ├── Ref.h │ │ ├── Replicate.h │ │ ├── Reshaped.h │ │ ├── ReturnByValue.h │ │ ├── Reverse.h │ │ ├── Select.h │ │ ├── SelfAdjointView.h │ │ ├── SelfCwiseBinaryOp.h │ │ ├── Solve.h │ │ ├── SolveTriangular.h │ │ ├── SolverBase.h │ │ ├── StableNorm.h │ │ ├── StlIterators.h │ │ ├── Stride.h │ │ ├── Swap.h │ │ ├── Transpose.h │ │ ├── Transpositions.h │ │ ├── TriangularMatrix.h │ │ ├── VectorBlock.h │ │ ├── VectorwiseOp.h │ │ ├── Visitor.h │ │ ├── arch │ │ │ ├── AVX │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AVX512 │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── AltiVec │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── MatrixProduct.h │ │ │ │ ├── MatrixProductCommon.h │ │ │ │ ├── MatrixProductMMA.h │ │ │ │ └── PacketMath.h │ │ │ ├── CUDA │ │ │ │ └── Complex.h │ │ │ ├── Default │ │ │ │ ├── BFloat16.h │ │ │ │ ├── ConjHelper.h │ │ │ │ ├── GenericPacketMathFunctions.h │ │ │ │ ├── GenericPacketMathFunctionsFwd.h │ │ │ │ ├── Half.h │ │ │ │ ├── Settings.h │ │ │ │ └── TypeCasting.h │ │ │ ├── GPU │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── HIP │ │ │ │ └── hcc │ │ │ │ │ └── math_constants.h │ │ │ ├── MSA │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ │ ├── NEON │ │ │ │ ├── Complex.h │ │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SSE │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SVE │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ └── TypeCasting.h │ │ │ ├── SYCL │ │ │ │ ├── InteropHeaders.h │ │ │ │ ├── MathFunctions.h │ │ │ │ ├── PacketMath.h │ │ │ │ ├── SyclMemoryModel.h │ │ │ │ └── TypeCasting.h │ │ │ └── ZVector │ │ │ │ ├── Complex.h │ │ │ │ ├── MathFunctions.h │ │ │ │ └── PacketMath.h │ │ ├── functors │ │ │ ├── AssignmentFunctors.h │ │ │ ├── BinaryFunctors.h │ │ │ ├── NullaryFunctors.h │ │ │ ├── StlFunctors.h │ │ │ ├── TernaryFunctors.h │ │ │ └── UnaryFunctors.h │ │ ├── products │ │ │ ├── GeneralBlockPanelKernel.h │ │ │ ├── GeneralMatrixMatrix.h │ │ │ ├── GeneralMatrixMatrixTriangular.h │ │ │ ├── GeneralMatrixMatrixTriangular_BLAS.h │ │ │ ├── GeneralMatrixMatrix_BLAS.h │ │ │ ├── GeneralMatrixVector.h │ │ │ ├── GeneralMatrixVector_BLAS.h │ │ │ ├── Parallelizer.h │ │ │ ├── SelfadjointMatrixMatrix.h │ │ │ ├── SelfadjointMatrixMatrix_BLAS.h │ │ │ ├── SelfadjointMatrixVector.h │ │ │ ├── SelfadjointMatrixVector_BLAS.h │ │ │ ├── SelfadjointProduct.h │ │ │ ├── SelfadjointRank2Update.h │ │ │ ├── TriangularMatrixMatrix.h │ │ │ ├── TriangularMatrixMatrix_BLAS.h │ │ │ ├── TriangularMatrixVector.h │ │ │ ├── TriangularMatrixVector_BLAS.h │ │ │ ├── TriangularSolverMatrix.h │ │ │ ├── TriangularSolverMatrix_BLAS.h │ │ │ └── TriangularSolverVector.h │ │ └── util │ │ │ ├── BlasUtil.h │ │ │ ├── ConfigureVectorization.h │ │ │ ├── Constants.h │ │ │ ├── DisableStupidWarnings.h │ │ │ ├── ForwardDeclarations.h │ │ │ ├── IndexedViewHelper.h │ │ │ ├── IntegralConstant.h │ │ │ ├── MKL_support.h │ │ │ ├── Macros.h │ │ │ ├── Memory.h │ │ │ ├── Meta.h │ │ │ ├── NonMPL2.h │ │ │ ├── ReenableStupidWarnings.h │ │ │ ├── ReshapedHelper.h │ │ │ ├── StaticAssert.h │ │ │ ├── SymbolicIndex.h │ │ │ └── XprHelper.h │ │ ├── Eigenvalues │ │ ├── ComplexEigenSolver.h │ │ ├── ComplexSchur.h │ │ ├── ComplexSchur_LAPACKE.h │ │ ├── EigenSolver.h │ │ ├── GeneralizedEigenSolver.h │ │ ├── GeneralizedSelfAdjointEigenSolver.h │ │ ├── HessenbergDecomposition.h │ │ ├── MatrixBaseEigenvalues.h │ │ ├── RealQZ.h │ │ ├── RealSchur.h │ │ ├── RealSchur_LAPACKE.h │ │ ├── SelfAdjointEigenSolver.h │ │ ├── SelfAdjointEigenSolver_LAPACKE.h │ │ └── Tridiagonalization.h │ │ ├── Geometry │ │ ├── AlignedBox.h │ │ ├── AngleAxis.h │ │ ├── EulerAngles.h │ │ ├── Homogeneous.h │ │ ├── Hyperplane.h │ │ ├── OrthoMethods.h │ │ ├── ParametrizedLine.h │ │ ├── Quaternion.h │ │ ├── Rotation2D.h │ │ ├── RotationBase.h │ │ ├── Scaling.h │ │ ├── Transform.h │ │ ├── Translation.h │ │ ├── Umeyama.h │ │ └── arch │ │ │ └── Geometry_SIMD.h │ │ ├── Householder │ │ ├── BlockHouseholder.h │ │ ├── Householder.h │ │ └── HouseholderSequence.h │ │ ├── IterativeLinearSolvers │ │ ├── BasicPreconditioners.h │ │ ├── BiCGSTAB.h │ │ ├── ConjugateGradient.h │ │ ├── IncompleteCholesky.h │ │ ├── IncompleteLUT.h │ │ ├── IterativeSolverBase.h │ │ ├── LeastSquareConjugateGradient.h │ │ └── SolveWithGuess.h │ │ ├── Jacobi │ │ └── Jacobi.h │ │ ├── KLUSupport │ │ └── KLUSupport.h │ │ ├── LU │ │ ├── Determinant.h │ │ ├── FullPivLU.h │ │ ├── InverseImpl.h │ │ ├── PartialPivLU.h │ │ ├── PartialPivLU_LAPACKE.h │ │ └── arch │ │ │ └── InverseSize4.h │ │ ├── MetisSupport │ │ └── MetisSupport.h │ │ ├── OrderingMethods │ │ ├── Amd.h │ │ ├── Eigen_Colamd.h │ │ └── Ordering.h │ │ ├── PaStiXSupport │ │ └── PaStiXSupport.h │ │ ├── PardisoSupport │ │ └── PardisoSupport.h │ │ ├── QR │ │ ├── ColPivHouseholderQR.h │ │ ├── ColPivHouseholderQR_LAPACKE.h │ │ ├── CompleteOrthogonalDecomposition.h │ │ ├── FullPivHouseholderQR.h │ │ ├── HouseholderQR.h │ │ └── HouseholderQR_LAPACKE.h │ │ ├── SPQRSupport │ │ └── SuiteSparseQRSupport.h │ │ ├── SVD │ │ ├── BDCSVD.h │ │ ├── JacobiSVD.h │ │ ├── JacobiSVD_LAPACKE.h │ │ ├── SVDBase.h │ │ └── UpperBidiagonalization.h │ │ ├── SparseCholesky │ │ ├── SimplicialCholesky.h │ │ └── SimplicialCholesky_impl.h │ │ ├── SparseCore │ │ ├── AmbiVector.h │ │ ├── CompressedStorage.h │ │ ├── ConservativeSparseSparseProduct.h │ │ ├── MappedSparseMatrix.h │ │ ├── SparseAssign.h │ │ ├── SparseBlock.h │ │ ├── SparseColEtree.h │ │ ├── SparseCompressedBase.h │ │ ├── SparseCwiseBinaryOp.h │ │ ├── SparseCwiseUnaryOp.h │ │ ├── SparseDenseProduct.h │ │ ├── SparseDiagonalProduct.h │ │ ├── SparseDot.h │ │ ├── SparseFuzzy.h │ │ ├── SparseMap.h │ │ ├── SparseMatrix.h │ │ ├── SparseMatrixBase.h │ │ ├── SparsePermutation.h │ │ ├── SparseProduct.h │ │ ├── SparseRedux.h │ │ ├── SparseRef.h │ │ ├── SparseSelfAdjointView.h │ │ ├── SparseSolverBase.h │ │ ├── SparseSparseProductWithPruning.h │ │ ├── SparseTranspose.h │ │ ├── SparseTriangularView.h │ │ ├── SparseUtil.h │ │ ├── SparseVector.h │ │ ├── SparseView.h │ │ └── TriangularSolver.h │ │ ├── SparseLU │ │ ├── SparseLU.h │ │ ├── SparseLUImpl.h │ │ ├── SparseLU_Memory.h │ │ ├── SparseLU_Structs.h │ │ ├── SparseLU_SupernodalMatrix.h │ │ ├── SparseLU_Utils.h │ │ ├── SparseLU_column_bmod.h │ │ ├── SparseLU_column_dfs.h │ │ ├── SparseLU_copy_to_ucol.h │ │ ├── SparseLU_gemm_kernel.h │ │ ├── SparseLU_heap_relax_snode.h │ │ ├── SparseLU_kernel_bmod.h │ │ ├── SparseLU_panel_bmod.h │ │ ├── SparseLU_panel_dfs.h │ │ ├── SparseLU_pivotL.h │ │ ├── SparseLU_pruneL.h │ │ └── SparseLU_relax_snode.h │ │ ├── SparseQR │ │ └── SparseQR.h │ │ ├── StlSupport │ │ ├── StdDeque.h │ │ ├── StdList.h │ │ ├── StdVector.h │ │ └── details.h │ │ ├── SuperLUSupport │ │ └── SuperLUSupport.h │ │ ├── UmfPackSupport │ │ └── UmfPackSupport.h │ │ ├── misc │ │ ├── Image.h │ │ ├── Kernel.h │ │ ├── RealSvd2x2.h │ │ ├── blas.h │ │ ├── lapack.h │ │ ├── lapacke.h │ │ └── lapacke_mangling.h │ │ └── plugins │ │ ├── ArrayCwiseBinaryOps.h │ │ ├── ArrayCwiseUnaryOps.h │ │ ├── BlockMethods.h │ │ ├── CommonCwiseBinaryOps.h │ │ ├── CommonCwiseUnaryOps.h │ │ ├── IndexedViewMethods.h │ │ ├── MatrixCwiseBinaryOps.h │ │ ├── MatrixCwiseUnaryOps.h │ │ └── ReshapedMethods.h └── signature_of_eigen3_matrix_library ├── examples ├── README.md ├── example1.ipynb ├── example1.vtr ├── example1_rays_raypaths for shot no 1.vtp ├── example1_rays_spm_raypaths for shot no 1.vtp ├── example2.ipynb ├── example2.vtu ├── example3.ipynb ├── example3.par ├── example3_rays_raypaths for shot no 1.vtp ├── example3_rays_raypaths for shot no 2.vtp ├── example3_vel.vtr ├── example4.ipynb ├── example5.ipynb ├── example_Grid3d.ipynb ├── example_tmesh_parallel.ipynb ├── figs │ ├── example1_tt_fsm.pdf │ ├── example1_tt_spm.pdf │ ├── example1_velocity.png │ ├── example2_model.pdf │ ├── example2_rays.pdf │ ├── example2_rays2.pdf │ ├── example2_tt.pdf │ ├── example3_model.png │ ├── example3_rays.png │ ├── rays_fsm.png │ └── rays_spm.png ├── model2d.grd ├── model2d.par ├── model2d.slo ├── out │ ├── model2d_src1_rp.vtp │ ├── model2d_src1_tt.dat │ ├── model2d_src2_rp.vtp │ ├── model2d_src2_tt.dat │ ├── model2d_src3_rp.vtp │ └── model2d_src3_tt.dat ├── rcv.dat ├── rcv3d.dat ├── src1.dat ├── src2.dat ├── src3.dat ├── src3d1.dat └── src3d2.dat ├── images ├── ttcrpy_logo.png └── ttcrpy_logo.svg ├── pyproject.toml ├── requirements.txt ├── setup.py ├── src └── ttcrpy │ ├── __init__.py │ ├── common.pxd │ ├── rgrid.pxd │ ├── rgrid.pyx │ ├── tmesh.pxd │ ├── tmesh.pyx │ ├── typedefs.h │ ├── utils_cython.h │ ├── verbose.cpp │ └── verbose.h ├── tests ├── files │ ├── Grid2Drcsp_tt_grid_elliptical.vtr │ ├── Grid2Drcsp_tt_grid_weakly.vtr │ ├── Grid2Ducsp_tt_grid_elliptical.vtu │ ├── Grid2Ducsp_tt_grid_weakly.vtu │ ├── Grid3Drcdsp_L │ ├── Grid3Drcdsp_rp_tr1.vtp │ ├── Grid3Drcdsp_rp_tr2.vtp │ ├── Grid3Drcdsp_rp_tr3.vtp │ ├── Grid3Drcdsp_slo │ ├── Grid3Drcfs_L │ ├── Grid3Drcfs_slo │ ├── Grid3Drcsp_L │ ├── Grid3Drcsp_rp_tr1.vtp │ ├── Grid3Drcsp_rp_tr2.vtp │ ├── Grid3Drcsp_rp_tr3.vtp │ ├── Grid3Drcsp_slo │ ├── Grid3Drndsp_rp_tr1.vtp │ ├── Grid3Drndsp_rp_tr2.vtp │ ├── Grid3Drndsp_rp_tr3.vtp │ ├── Grid3Drnsp_rp_tr1.vtp │ ├── Grid3Drnsp_rp_tr2.vtp │ ├── Grid3Drnsp_rp_tr3.vtp │ ├── Grid3Ducdsp_L │ ├── Grid3Ducdsp_rp_tr1.vtp │ ├── Grid3Ducdsp_rp_tr2.vtp │ ├── Grid3Ducdsp_rp_tr3.vtp │ ├── Grid3Ducdsp_slo │ ├── Grid3Ducfs_L │ ├── Grid3Ducfs_slo │ ├── Grid3Ducsp_L │ ├── Grid3Ducsp_rp_tr1.vtp │ ├── Grid3Ducsp_rp_tr2.vtp │ ├── Grid3Ducsp_rp_tr3.vtp │ ├── Grid3Ducsp_slo │ ├── Grid3Dundsp_rp_tr1.vtp │ ├── Grid3Dundsp_rp_tr2.vtp │ ├── Grid3Dundsp_rp_tr3.vtp │ ├── Grid3Dunsp_rp_tr1.vtp │ ├── Grid3Dunsp_rp_tr2.vtp │ ├── Grid3Dunsp_rp_tr3.vtp │ ├── elliptical_fine2d.vtr │ ├── elliptical_fine2d.vtu │ ├── gradient_coarse2d.vtr │ ├── gradient_coarse2d.vtu │ ├── gradient_fine2d.vtr │ ├── gradient_fine2d.vtu │ ├── gradient_gmsh2d.vtu │ ├── gradient_medium.vtr │ ├── gradient_medium.vtu │ ├── gradient_medium2.vtr │ ├── gradient_medium2.vtu │ ├── layers_coarse2d.vtr │ ├── layers_coarse2d.vtu │ ├── layers_fine2d.vtr │ ├── layers_fine2d.vtu │ ├── layers_medium.vtr │ ├── layers_medium.vtu │ ├── layers_medium2.vtr │ ├── layers_medium2.vtu │ ├── mk_models2d.py │ ├── mk_models3d.py │ ├── prepare_tests_aniso.py │ ├── rcv.dat │ ├── rcv2d.dat │ ├── rcv2d_in.dat │ ├── rcv2daniso.dat │ ├── rcv3d_in.dat │ ├── rcv3d_in2.dat │ ├── sol_analytique_couches.py │ ├── sol_analytique_couches2d.py │ ├── sol_analytique_couches2d_tt.vtr │ ├── sol_analytique_couches_tt.vtr │ ├── sol_analytique_elliptical_2d_tt.vtr │ ├── sol_analytique_gradient.py │ ├── sol_analytique_gradient2d_tt.vtr │ ├── sol_analytique_gradient_tt.vtr │ ├── sol_analytique_weakly_an_2d_tt.vtr │ ├── src.dat │ ├── src2d.dat │ ├── src2d_in.dat │ ├── src3d_in.dat │ ├── src3d_in2.dat │ ├── traveltime.py │ ├── ttwean.py │ ├── ttwean_old.py │ ├── velocity.eps │ ├── weakly_an_fine2d.vtr │ └── weakly_an_fine2d.vtu ├── test_grid2d.cpp ├── test_grid3d.cpp ├── test_rgrid2d.py ├── test_rgrid3d.py ├── test_tmesh2d.py └── test_tmesh3d.py ├── ttcr ├── CMakeLists.txt ├── Cell.h ├── Grad.h ├── Grid2D.h ├── Grid2Drc.h ├── Grid2Drcdsp.h ├── Grid2Drcfs.h ├── Grid2Drcsp.h ├── Grid2Drn.h ├── Grid2Drndsp.h ├── Grid2Drnfs.h ├── Grid2Drnsp.h ├── Grid2Duc.h ├── Grid2Ducdsp.h ├── Grid2Ducfm.h ├── Grid2Ducfs.h ├── Grid2Ducsp.h ├── Grid2Dun.h ├── Grid2Dundsp.h ├── Grid2Dunfm.h ├── Grid2Dunfs.h ├── Grid2Dunsp.h ├── Grid3D.h ├── Grid3Drc.h ├── Grid3Drcdsp.h ├── Grid3Drcfs.h ├── Grid3Drcsp.h ├── Grid3Drn.h ├── Grid3Drndsp.h ├── Grid3Drnfs.h ├── Grid3Drnsp.h ├── Grid3Duc.h ├── Grid3Ducdsp.h ├── Grid3Ducfm.h ├── Grid3Ducfs.h ├── Grid3Ducsp.h ├── Grid3Dun.h ├── Grid3Dundsp.h ├── Grid3Dunfm.h ├── Grid3Dunfs.h ├── Grid3Dunsp.h ├── Interface.h ├── Interpolator.h ├── MSHReader.h ├── Metric.h ├── Node.h ├── Node2Dc.h ├── Node2Dcd.h ├── Node2Dcsp.h ├── Node2Dn.h ├── Node2Dnd.h ├── Node2Dnsp.h ├── Node3Dc.h ├── Node3Dcd.h ├── Node3Dcsp.h ├── Node3Dn.h ├── Node3Dnd.h ├── Node3Dnsp.h ├── Rcv.h ├── Rcv2D.h ├── Src.h ├── Src2D.h ├── VTUReader.h ├── ctpl_stl.h ├── grids.h ├── msh2vtk.cpp ├── msh2vtk_io.cpp ├── msh2vtk_io.h ├── structs_msh2vtk.h ├── structs_ttcr.h ├── ttcr2d.cpp ├── ttcr2ds.cpp ├── ttcr3d.cpp ├── ttcr3d_raypath.cpp ├── ttcr_io.cpp ├── ttcr_io.h ├── ttcr_t.h ├── ttcr_u.1 └── utils.h └── ttcr_matlab ├── README.txt ├── class_handle.hpp ├── grid2drcfs.m ├── grid2drcfs_mex.cpp ├── grid2drcsp.m ├── grid2drcsp_mex.cpp ├── grid2dunsp.m ├── grid2dunsp_mex.cpp ├── grid3drcfs.m ├── grid3drcfs_mex.cpp ├── grid3drcsp.m ├── grid3drcsp_mex.cpp ├── grid3dunfs.m ├── grid3dunfs_mex.cpp ├── grid3dunsp.m ├── grid3dunsp_mex.cpp └── verbose.cpp /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/wheels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/.github/workflows/wheels.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /01_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/01_LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile.centos: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/Makefile.centos -------------------------------------------------------------------------------- /Makefile.noVTK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/Makefile.noVTK -------------------------------------------------------------------------------- /Makefile.osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/Makefile.osx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/README.md -------------------------------------------------------------------------------- /boost_1_81_0/LICENSE_1_0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/LICENSE_1_0.txt -------------------------------------------------------------------------------- /boost_1_81_0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/README.md -------------------------------------------------------------------------------- /boost_1_81_0/boost/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/align.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/align_down.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/align_down.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/align_up.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/align_up.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/aligned_alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/aligned_alloc.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/aligned_delete.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/aligned_delete.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/alignment_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/alignment_of.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/assume_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/assume_aligned.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/detail/align.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/detail/align.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/align/is_aligned.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/align/is_aligned.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/aligned_storage.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/aligned_storage.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/any_io_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/any_io_executor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/append.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/as_tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/as_tuple.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/associator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/associator.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/async_result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/async_result.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/awaitable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/awaitable.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/basic_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/basic_file.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/basic_socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/basic_socket.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/buffer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/co_spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/co_spawn.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/compose.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/compose.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/connect.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/connect_pipe.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/connect_pipe.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/consign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/consign.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/coroutine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/coroutine.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/defer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/deferred.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/deferred.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/detached.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/detached.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/detail/array.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/detail/array.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/detail/event.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/detail/event.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/detail/mutex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/detail/mutex.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/dispatch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/dispatch.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/error.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/execution.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/execution.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/executor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/file_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/file_base.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/append.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/append.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/connect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/connect.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/consign.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/consign.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/defer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/defer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/error.ipp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/error.ipp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/post.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/prepend.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/read.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/read_at.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/spawn.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/src.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/impl/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/impl/write.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/io_context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/io_context.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/io_service.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/io_service.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/address.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/address.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/host_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/host_name.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/icmp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/icmp.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/multicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/multicast.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/tcp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/tcp.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/udp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/udp.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/unicast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/unicast.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ip/v6_only.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ip/v6_only.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/is_executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/is_executor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/placeholders.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/post.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/post.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/prefer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/prefer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/prepend.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/prepend.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/query.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/query.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/read.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/read.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/read_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/read_at.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/read_until.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/read_until.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/require.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/require.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/serial_port.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/serial_port.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/signal_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/signal_set.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/socket_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/socket_base.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/spawn.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/spawn.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ssl.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ssl/context.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ssl/context.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ssl/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ssl/error.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ssl/impl/src.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ssl/impl/src.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ssl/stream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ssl/stream.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/steady_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/steady_timer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/strand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/strand.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/stream_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/stream_file.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/streambuf.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/streambuf.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/system_timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/system_timer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/this_coro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/this_coro.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/thread_pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/thread_pool.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/time_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/time_traits.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/buffer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/buffer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/executor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/executor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/internet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/internet.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/net.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/net.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/netfwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/netfwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/socket.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/socket.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/ts/timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/ts/timer.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/unyield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/unyield.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/use_future.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/use_future.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/version.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/wait_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/wait_traits.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/write.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/write.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/write_at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/write_at.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/asio/yield.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/asio/yield.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/assert.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/cerrno.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/cerrno.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/abi_prefix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/abi_prefix.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/abi_suffix.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/abi_suffix.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/auto_link.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/auto_link.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/stdlib/msl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/stdlib/msl.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/stdlib/sgi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/stdlib/sgi.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/user.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/config/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/config/workaround.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/addressof.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/bit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/bit.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/cmath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/cmath.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/demangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/demangle.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/empty_value.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/empty_value.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/enable_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/exchange.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/exchange.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/first_scalar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/first_scalar.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/is_same.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/is_same.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/noncopyable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/noncopyable.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/null_deleter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/null_deleter.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/nvp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/nvp.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/quick_exit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/quick_exit.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/ref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/ref.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/scoped_enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/scoped_enum.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/span.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/span.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/swap.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/type_name.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/type_name.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/typeinfo.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/typeinfo.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/core/use_default.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/core/use_default.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/cstdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/cstdint.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/current_function.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/current_function.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/algorithm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/algorithm.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/bitmask.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/bitmask.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/fenv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/fenv.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/identifier.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/identifier.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/is_sorted.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/is_sorted.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/is_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/is_xxx.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/iterator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/iterator.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/winapi/apc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/winapi/apc.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/winapi/dll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/winapi/dll.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/winapi/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/winapi/tls.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/detail/workaround.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/detail/workaround.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/exception/all.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/exception/all.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/exception/info.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/exception/info.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/agm.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/agm.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/assert.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/atomic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/atomic.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/config.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/minima.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/minima.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/mp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/mp.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/norms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/norms.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/roots.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/roots.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/series.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/series.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/stats.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/stats.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/traits.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/tuple.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/tuple.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/math/tools/user.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/math/tools/user.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/O1_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/O1_size.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/O1_size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/O1_size_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/accumulate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/accumulate.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/advance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/advance.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/advance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/advance_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/alias.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/alias.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/always.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/always.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/and.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/and.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/apply.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/apply.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/apply_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/apply_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/apply_wrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/apply_wrap.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/arg.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/arg.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/arg_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/arg_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/arithmetic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/arithmetic.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/as_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/as_sequence.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/assert.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/at.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/at.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/at_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/at_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/arity.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/at_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/at_impl.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/fold_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/fold_op.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/has_size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/has_size.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/has_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/has_tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/has_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/has_type.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/msvc_dtw.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/msvc_dtw.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/na.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/na.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/na_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/na_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/na_spec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/na_spec.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/shift_op.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/shift_op.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/test.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/test.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/unwrap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/unwrap.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/aux_/yes_no.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/aux_/yes_no.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/back.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/back_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/back_inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/back_inserter.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/base.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/begin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/begin.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/begin_end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/begin_end.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/begin_end_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/begin_end_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bind.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bind.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bind_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bind_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bitand.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bitand.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bitor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bitor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bitwise.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bitwise.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bitxor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bitxor.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bool.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/bool_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/bool_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/char.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/char.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/char_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/char_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/clear.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/clear.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/clear_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/clear_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/comparison.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/comparison.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/contains.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/contains.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/contains_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/contains_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/copy.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/copy.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/copy_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/copy_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/count.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/count.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/count_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/count_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/count_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/count_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/deque.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/deque.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/deref.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/deref.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/distance.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/distance.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/distance_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/distance_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/divides.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/divides.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/empty.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/empty.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/empty_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/empty_base.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/empty_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/empty_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/end.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/end.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/equal.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/equal_to.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/erase.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/erase.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/erase_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/erase_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/erase_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/erase_key.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/erase_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/erase_key_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/eval_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/eval_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/filter_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/filter_view.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/find.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/find.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/find_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/find_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/fold.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/for_each.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/for_each.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/front.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/front_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/get_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/get_tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/greater.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/greater.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/greater_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/greater_equal.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/has_key.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/has_key.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/has_key_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/has_key_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/has_xxx.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/has_xxx.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/identity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/identity.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/index_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/index_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/index_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/index_of.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/inherit.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/inherit.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/insert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/insert.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/insert_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/insert_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/insert_range.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/insert_range.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/inserter.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/inserter.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/int.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/int.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/int_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/int_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/integral_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/integral_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/is_sequence.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/is_sequence.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/iter_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/iter_fold.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/iter_fold_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/iter_fold_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/iterator_tags.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/iterator_tags.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/joint_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/joint_view.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/key_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/key_type.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/key_type_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/key_type_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/lambda.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/lambda.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/lambda_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/lambda_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/less.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/less.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/less_equal.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/less_equal.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/arity.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/arity.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/list.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/map.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/set.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/string.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/limits/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/limits/vector.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/aux_/tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list0.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list0_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list10.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list10_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list20.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list20_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list30.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list30_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list40.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list40_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list50.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list/list50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list/list50_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/list_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/list_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/logical.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/logical.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/long.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/long.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/long_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/long_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/lower_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/lower_bound.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/aux_/item.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/aux_/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/aux_/map0.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/aux_/tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map0.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map10.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map20.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map30.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map40.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/map/map50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/map/map50.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/math/fixed_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/math/fixed_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/math/is_even.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/math/is_even.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/max.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/max_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/max_element.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/min.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/min_element.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/min_element.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/min_max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/min_max.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/minus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/minus.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/modulus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/modulus.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/multiplies.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/multiplies.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/negate.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/negate.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/next.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/next.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/next_prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/next_prior.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/not.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/not.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/not_equal_to.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/not_equal_to.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/numeric_cast.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/numeric_cast.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/or.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/or.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/order.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/order.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/order_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/order_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pair.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pair.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pair_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pair_view.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/partition.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/partition.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/placeholders.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/placeholders.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/plus.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/plus.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pop_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pop_back.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pop_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pop_back_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pop_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pop_front.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/pop_front_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/pop_front_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/print.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/prior.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/prior.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/protect.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/protect.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/push_back.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/push_back.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/push_back_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/push_back_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/push_front.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/push_front.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/quote.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/quote.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/range_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/range_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/remove.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/remove.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/remove_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/remove_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/replace.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/replace.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/replace_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/replace_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/reverse.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/reverse.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/reverse_fold.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/reverse_fold.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/same_as.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/same_as.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/sequence_tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/sequence_tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/aux_/item.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/aux_/item.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/aux_/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/aux_/set0.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/aux_/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/aux_/tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set0.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set0.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set0_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set0_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set10.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set10.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set10_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set10_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set20.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set20.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set20_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set20_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set30.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set30.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set30_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set30_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set40.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set40.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set40_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set40_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set50.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set50.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set/set50_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set/set50_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/set_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/set_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/shift_left.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/shift_left.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/shift_right.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/shift_right.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/single_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/single_view.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/size.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/size.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/size_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/size_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/size_t.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/size_t.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/size_t_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/size_t_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/sizeof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/sizeof.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/sort.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/sort.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/string.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/string.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/switch.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/switch.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/tag.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/tag.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/times.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/times.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/transform.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/transform.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/unique.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/unique.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/unpack_args.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/unpack_args.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/upper_bound.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/upper_bound.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/value_type.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/value_type.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/vector.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/vector_c.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/vector_c.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/void.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/void.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/void_fwd.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/void_fwd.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/mpl/zip_view.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/mpl/zip_view.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/architecture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/architecture.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/edg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/edg.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/gcc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/gcc.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/iar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/iar.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/ibm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/ibm.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/kai.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/kai.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/mpw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/mpw.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/compiler/pgi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/compiler/pgi.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/detail/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/detail/test.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/hardware.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/language.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/library.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/library.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/library/c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/library/c.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/library/c/uc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/library/c/uc.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/library/std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/library/std.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/make.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/make.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/aix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/aix.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/amigaos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/amigaos.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/beos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/beos.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/bsd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/bsd.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/bsd/bsdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/bsd/bsdi.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/bsd/free.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/bsd/free.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/bsd/net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/bsd/net.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/bsd/open.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/bsd/open.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/cygwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/cygwin.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/haiku.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/haiku.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/hpux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/hpux.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/ios.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/irix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/irix.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/linux.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/macos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/macos.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/os400.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/os400.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/qnxnto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/qnxnto.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/solaris.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/solaris.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/unix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/unix.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/vms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/vms.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/os/windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/os/windows.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/other.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/other.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/other/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/other/endian.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/platform.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/platform/ios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/platform/ios.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/predef/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/predef/version.h -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/cat.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/cat.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/dec.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/dec.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/enum.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/enum.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/for.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/for.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/inc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/inc.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/list.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/list.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/max.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/max.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/min.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/min.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/seq.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/seq.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/preprocessor/slot.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/preprocessor/slot.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/static_assert.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/static_assert.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/system/api_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/system/api_config.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/system/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/system/config.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/system/errc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/system/errc.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/system/error_code.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/system/error_code.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/system/result.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/system/result.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/throw_exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/throw_exception.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/type_traits/decay.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/type_traits/decay.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/type_traits/ice.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/type_traits/ice.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/type_traits/rank.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/type_traits/rank.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/addressof.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/addressof.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/binary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/binary.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/declval.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/declval.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/enable_if.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/enable_if.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/result_of.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/result_of.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/utility/swap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/utility/swap.hpp -------------------------------------------------------------------------------- /boost_1_81_0/boost/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/boost_1_81_0/boost/version.hpp -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/_static/default.css -------------------------------------------------------------------------------- /docs/_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/_templates/layout.html -------------------------------------------------------------------------------- /docs/algorithms.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/algorithms.rst -------------------------------------------------------------------------------- /docs/code.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/code.rst -------------------------------------------------------------------------------- /docs/code_rgrid.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/code_rgrid.rst -------------------------------------------------------------------------------- /docs/code_tmesh.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/code_tmesh.rst -------------------------------------------------------------------------------- /docs/command_line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/command_line.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/getting_started.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/getting_started.rst -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_dspm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_dspm.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_dspm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_dspm.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_fsm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_fsm.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_fsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_fsm.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gc.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gc.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gf.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gf.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gm.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_gm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_gm.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lc.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lc.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lc.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lf.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lf.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lf.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lm.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_lm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_lm.png -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_spm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_spm.pdf -------------------------------------------------------------------------------- /docs/images/accuracy_vs_cpu_spm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/accuracy_vs_cpu_spm.png -------------------------------------------------------------------------------- /docs/images/discr1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/discr1.pdf -------------------------------------------------------------------------------- /docs/images/discr1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/discr1.png -------------------------------------------------------------------------------- /docs/images/discr2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/discr2.pdf -------------------------------------------------------------------------------- /docs/images/discr2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/discr2.png -------------------------------------------------------------------------------- /docs/images/figure02.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/figure02.pdf -------------------------------------------------------------------------------- /docs/images/figure02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/figure02.png -------------------------------------------------------------------------------- /docs/images/gradient_coarse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/gradient_coarse.png -------------------------------------------------------------------------------- /docs/images/gradient_fine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/gradient_fine.png -------------------------------------------------------------------------------- /docs/images/gradient_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/gradient_medium.png -------------------------------------------------------------------------------- /docs/images/layers_coarse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/layers_coarse.png -------------------------------------------------------------------------------- /docs/images/layers_fine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/layers_fine.png -------------------------------------------------------------------------------- /docs/images/layers_medium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/layers_medium.png -------------------------------------------------------------------------------- /docs/images/spm_rp.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw0.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw0.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw1.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw1.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw2.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw2.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw3.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw3.png -------------------------------------------------------------------------------- /docs/images/spm_rp_bw4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw4.pdf -------------------------------------------------------------------------------- /docs/images/spm_rp_bw4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/images/spm_rp_bw4.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/model_discretization.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/model_discretization.rst -------------------------------------------------------------------------------- /docs/performance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/performance.rst -------------------------------------------------------------------------------- /docs/references.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/docs/references.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | cython 3 | numpy>=1.20.1 4 | scipy 5 | vtk 6 | sphinx_rtd_theme 7 | -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.APACHE -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.BSD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.BSD -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.GPL -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.LGPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.LGPL -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.MINPACK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.MINPACK -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.MPL2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.MPL2 -------------------------------------------------------------------------------- /eigen-3.4.0/COPYING.README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/COPYING.README -------------------------------------------------------------------------------- /eigen-3.4.0/CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/CTestConfig.cmake -------------------------------------------------------------------------------- /eigen-3.4.0/CTestCustom.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/CTestCustom.cmake.in -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Cholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Cholesky -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/CholmodSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/CholmodSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Core -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Dense: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Dense -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Eigen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Eigen -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Eigenvalues: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Eigenvalues -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Geometry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Geometry -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Householder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Householder -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/IterativeLinearSolvers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/IterativeLinearSolvers -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Jacobi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Jacobi -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/KLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/KLUSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/LU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/LU -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/MetisSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/MetisSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/OrderingMethods: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/OrderingMethods -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/PaStiXSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/PaStiXSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/PardisoSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/PardisoSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/QR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/QR -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/QtAlignedMalloc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/QtAlignedMalloc -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SPQRSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SPQRSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SVD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SVD -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/Sparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/Sparse -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SparseCholesky: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SparseCholesky -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SparseCore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SparseCore -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SparseLU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SparseLU -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SparseQR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SparseQR -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/StdDeque: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/StdDeque -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/StdList: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/StdList -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/StdVector: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/StdVector -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/SuperLUSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/SuperLUSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/UmfPackSupport: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/UmfPackSupport -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Cholesky/LDLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Cholesky/LDLT.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Cholesky/LLT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Cholesky/LLT.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Array.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/ArrayBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/ArrayBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Assign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Assign.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Assign_MKL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Assign_MKL.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/BandMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/BandMatrix.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Block.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/DenseBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/DenseBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Diagonal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Diagonal.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Dot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Dot.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/EigenBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/EigenBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Fuzzy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Fuzzy.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/IO.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/IO.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/IndexedView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/IndexedView.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Inverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Inverse.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Map.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/MapBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/MapBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Matrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Matrix.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/MatrixBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/MatrixBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/NestByValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/NestByValue.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/NoAlias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/NoAlias.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/NumTraits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/NumTraits.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Product.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Product.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Random.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Redux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Redux.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Ref.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Replicate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Replicate.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Reshaped.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Reshaped.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Reverse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Reverse.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Select.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Select.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Solve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Solve.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/SolverBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/SolverBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/StableNorm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/StableNorm.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Stride.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Stride.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Swap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Swap.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Transpose.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/VectorBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/VectorBlock.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/Visitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/Visitor.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/util/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/util/Macros.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/util/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/util/Memory.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Core/util/Meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Core/util/Meta.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Geometry/Scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Geometry/Scaling.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Geometry/Umeyama.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Geometry/Umeyama.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/Jacobi/Jacobi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/Jacobi/Jacobi.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/LU/Determinant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/LU/Determinant.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/LU/FullPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/LU/FullPivLU.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/LU/InverseImpl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/LU/InverseImpl.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/LU/PartialPivLU.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/LU/PartialPivLU.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/QR/HouseholderQR.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/QR/HouseholderQR.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/SVD/BDCSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/SVD/BDCSVD.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/SVD/JacobiSVD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/SVD/JacobiSVD.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/SVD/SVDBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/SVD/SVDBase.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/Image.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/Kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/Kernel.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/RealSvd2x2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/RealSvd2x2.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/blas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/blas.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/lapack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/lapack.h -------------------------------------------------------------------------------- /eigen-3.4.0/Eigen/src/misc/lapacke.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/eigen-3.4.0/Eigen/src/misc/lapacke.h -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/example1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example1.ipynb -------------------------------------------------------------------------------- /examples/example1.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example1.vtr -------------------------------------------------------------------------------- /examples/example2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example2.ipynb -------------------------------------------------------------------------------- /examples/example2.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example2.vtu -------------------------------------------------------------------------------- /examples/example3.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example3.ipynb -------------------------------------------------------------------------------- /examples/example3.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example3.par -------------------------------------------------------------------------------- /examples/example3_vel.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example3_vel.vtr -------------------------------------------------------------------------------- /examples/example4.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example4.ipynb -------------------------------------------------------------------------------- /examples/example5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example5.ipynb -------------------------------------------------------------------------------- /examples/example_Grid3d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example_Grid3d.ipynb -------------------------------------------------------------------------------- /examples/example_tmesh_parallel.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/example_tmesh_parallel.ipynb -------------------------------------------------------------------------------- /examples/figs/example1_tt_fsm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example1_tt_fsm.pdf -------------------------------------------------------------------------------- /examples/figs/example1_tt_spm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example1_tt_spm.pdf -------------------------------------------------------------------------------- /examples/figs/example1_velocity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example1_velocity.png -------------------------------------------------------------------------------- /examples/figs/example2_model.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example2_model.pdf -------------------------------------------------------------------------------- /examples/figs/example2_rays.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example2_rays.pdf -------------------------------------------------------------------------------- /examples/figs/example2_rays2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example2_rays2.pdf -------------------------------------------------------------------------------- /examples/figs/example2_tt.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example2_tt.pdf -------------------------------------------------------------------------------- /examples/figs/example3_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example3_model.png -------------------------------------------------------------------------------- /examples/figs/example3_rays.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/example3_rays.png -------------------------------------------------------------------------------- /examples/figs/rays_fsm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/rays_fsm.png -------------------------------------------------------------------------------- /examples/figs/rays_spm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/figs/rays_spm.png -------------------------------------------------------------------------------- /examples/model2d.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/model2d.grd -------------------------------------------------------------------------------- /examples/model2d.par: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/model2d.par -------------------------------------------------------------------------------- /examples/model2d.slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/model2d.slo -------------------------------------------------------------------------------- /examples/out/model2d_src1_rp.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src1_rp.vtp -------------------------------------------------------------------------------- /examples/out/model2d_src1_tt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src1_tt.dat -------------------------------------------------------------------------------- /examples/out/model2d_src2_rp.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src2_rp.vtp -------------------------------------------------------------------------------- /examples/out/model2d_src2_tt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src2_tt.dat -------------------------------------------------------------------------------- /examples/out/model2d_src3_rp.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src3_rp.vtp -------------------------------------------------------------------------------- /examples/out/model2d_src3_tt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/out/model2d_src3_tt.dat -------------------------------------------------------------------------------- /examples/rcv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/rcv.dat -------------------------------------------------------------------------------- /examples/rcv3d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/rcv3d.dat -------------------------------------------------------------------------------- /examples/src1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/src1.dat -------------------------------------------------------------------------------- /examples/src2.dat: -------------------------------------------------------------------------------- 1 | 1 2 | 100.0 0.5 0.0 3 | 4 | -------------------------------------------------------------------------------- /examples/src3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/examples/src3.dat -------------------------------------------------------------------------------- /examples/src3d1.dat: -------------------------------------------------------------------------------- 1 | 1 2 | 9.0 4.3 124.2 0.0 3 | -------------------------------------------------------------------------------- /examples/src3d2.dat: -------------------------------------------------------------------------------- 1 | 1 2 | 4.1 241.4 119.7 0.0 3 | -------------------------------------------------------------------------------- /images/ttcrpy_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/images/ttcrpy_logo.png -------------------------------------------------------------------------------- /images/ttcrpy_logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/images/ttcrpy_logo.svg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | setuptools 2 | cython 3 | numpy>=2.0.0 4 | scipy 5 | vtk 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/setup.py -------------------------------------------------------------------------------- /src/ttcrpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/__init__.py -------------------------------------------------------------------------------- /src/ttcrpy/common.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/common.pxd -------------------------------------------------------------------------------- /src/ttcrpy/rgrid.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/rgrid.pxd -------------------------------------------------------------------------------- /src/ttcrpy/rgrid.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/rgrid.pyx -------------------------------------------------------------------------------- /src/ttcrpy/tmesh.pxd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/tmesh.pxd -------------------------------------------------------------------------------- /src/ttcrpy/tmesh.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/tmesh.pyx -------------------------------------------------------------------------------- /src/ttcrpy/typedefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/typedefs.h -------------------------------------------------------------------------------- /src/ttcrpy/utils_cython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/utils_cython.h -------------------------------------------------------------------------------- /src/ttcrpy/verbose.cpp: -------------------------------------------------------------------------------- 1 | 2 | namespace ttcr { 3 | int verbose = 0; 4 | } 5 | -------------------------------------------------------------------------------- /src/ttcrpy/verbose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/src/ttcrpy/verbose.h -------------------------------------------------------------------------------- /tests/files/Grid3Drcdsp_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcdsp_L -------------------------------------------------------------------------------- /tests/files/Grid3Drcdsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcdsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcdsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcdsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcdsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcdsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcdsp_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcdsp_slo -------------------------------------------------------------------------------- /tests/files/Grid3Drcfs_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcfs_L -------------------------------------------------------------------------------- /tests/files/Grid3Drcfs_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcfs_slo -------------------------------------------------------------------------------- /tests/files/Grid3Drcsp_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcsp_L -------------------------------------------------------------------------------- /tests/files/Grid3Drcsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drcsp_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drcsp_slo -------------------------------------------------------------------------------- /tests/files/Grid3Drndsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drndsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drndsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drndsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drndsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drndsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drnsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drnsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drnsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drnsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Drnsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Drnsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducdsp_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducdsp_L -------------------------------------------------------------------------------- /tests/files/Grid3Ducdsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducdsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducdsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducdsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducdsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducdsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducdsp_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducdsp_slo -------------------------------------------------------------------------------- /tests/files/Grid3Ducfs_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducfs_L -------------------------------------------------------------------------------- /tests/files/Grid3Ducfs_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducfs_slo -------------------------------------------------------------------------------- /tests/files/Grid3Ducsp_L: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducsp_L -------------------------------------------------------------------------------- /tests/files/Grid3Ducsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Ducsp_slo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Ducsp_slo -------------------------------------------------------------------------------- /tests/files/Grid3Dundsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dundsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Dundsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dundsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Dundsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dundsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Dunsp_rp_tr1.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dunsp_rp_tr1.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Dunsp_rp_tr2.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dunsp_rp_tr2.vtp -------------------------------------------------------------------------------- /tests/files/Grid3Dunsp_rp_tr3.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/Grid3Dunsp_rp_tr3.vtp -------------------------------------------------------------------------------- /tests/files/elliptical_fine2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/elliptical_fine2d.vtr -------------------------------------------------------------------------------- /tests/files/elliptical_fine2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/elliptical_fine2d.vtu -------------------------------------------------------------------------------- /tests/files/gradient_coarse2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_coarse2d.vtr -------------------------------------------------------------------------------- /tests/files/gradient_coarse2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_coarse2d.vtu -------------------------------------------------------------------------------- /tests/files/gradient_fine2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_fine2d.vtr -------------------------------------------------------------------------------- /tests/files/gradient_fine2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_fine2d.vtu -------------------------------------------------------------------------------- /tests/files/gradient_gmsh2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_gmsh2d.vtu -------------------------------------------------------------------------------- /tests/files/gradient_medium.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_medium.vtr -------------------------------------------------------------------------------- /tests/files/gradient_medium.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_medium.vtu -------------------------------------------------------------------------------- /tests/files/gradient_medium2.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_medium2.vtr -------------------------------------------------------------------------------- /tests/files/gradient_medium2.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/gradient_medium2.vtu -------------------------------------------------------------------------------- /tests/files/layers_coarse2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_coarse2d.vtr -------------------------------------------------------------------------------- /tests/files/layers_coarse2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_coarse2d.vtu -------------------------------------------------------------------------------- /tests/files/layers_fine2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_fine2d.vtr -------------------------------------------------------------------------------- /tests/files/layers_fine2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_fine2d.vtu -------------------------------------------------------------------------------- /tests/files/layers_medium.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_medium.vtr -------------------------------------------------------------------------------- /tests/files/layers_medium.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_medium.vtu -------------------------------------------------------------------------------- /tests/files/layers_medium2.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_medium2.vtr -------------------------------------------------------------------------------- /tests/files/layers_medium2.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/layers_medium2.vtu -------------------------------------------------------------------------------- /tests/files/mk_models2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/mk_models2d.py -------------------------------------------------------------------------------- /tests/files/mk_models3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/mk_models3d.py -------------------------------------------------------------------------------- /tests/files/prepare_tests_aniso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/prepare_tests_aniso.py -------------------------------------------------------------------------------- /tests/files/rcv.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv.dat -------------------------------------------------------------------------------- /tests/files/rcv2d.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv2d.dat -------------------------------------------------------------------------------- /tests/files/rcv2d_in.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv2d_in.dat -------------------------------------------------------------------------------- /tests/files/rcv2daniso.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv2daniso.dat -------------------------------------------------------------------------------- /tests/files/rcv3d_in.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv3d_in.dat -------------------------------------------------------------------------------- /tests/files/rcv3d_in2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/rcv3d_in2.dat -------------------------------------------------------------------------------- /tests/files/sol_analytique_couches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/sol_analytique_couches.py -------------------------------------------------------------------------------- /tests/files/sol_analytique_couches2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/sol_analytique_couches2d.py -------------------------------------------------------------------------------- /tests/files/sol_analytique_gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/sol_analytique_gradient.py -------------------------------------------------------------------------------- /tests/files/src.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/src.dat -------------------------------------------------------------------------------- /tests/files/src2d.dat: -------------------------------------------------------------------------------- 1 | 1 2 | 0 0 0 3 | -------------------------------------------------------------------------------- /tests/files/src2d_in.dat: -------------------------------------------------------------------------------- 1 | 1 2 | 1 1 0 3 | -------------------------------------------------------------------------------- /tests/files/src3d_in.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/src3d_in.dat -------------------------------------------------------------------------------- /tests/files/src3d_in2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/src3d_in2.dat -------------------------------------------------------------------------------- /tests/files/traveltime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/traveltime.py -------------------------------------------------------------------------------- /tests/files/ttwean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/ttwean.py -------------------------------------------------------------------------------- /tests/files/ttwean_old.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/ttwean_old.py -------------------------------------------------------------------------------- /tests/files/velocity.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/velocity.eps -------------------------------------------------------------------------------- /tests/files/weakly_an_fine2d.vtr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/weakly_an_fine2d.vtr -------------------------------------------------------------------------------- /tests/files/weakly_an_fine2d.vtu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/files/weakly_an_fine2d.vtu -------------------------------------------------------------------------------- /tests/test_grid2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_grid2d.cpp -------------------------------------------------------------------------------- /tests/test_grid3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_grid3d.cpp -------------------------------------------------------------------------------- /tests/test_rgrid2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_rgrid2d.py -------------------------------------------------------------------------------- /tests/test_rgrid3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_rgrid3d.py -------------------------------------------------------------------------------- /tests/test_tmesh2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_tmesh2d.py -------------------------------------------------------------------------------- /tests/test_tmesh3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/tests/test_tmesh3d.py -------------------------------------------------------------------------------- /ttcr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/CMakeLists.txt -------------------------------------------------------------------------------- /ttcr/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Cell.h -------------------------------------------------------------------------------- /ttcr/Grad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grad.h -------------------------------------------------------------------------------- /ttcr/Grid2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2D.h -------------------------------------------------------------------------------- /ttcr/Grid2Drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drc.h -------------------------------------------------------------------------------- /ttcr/Grid2Drcdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drcdsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Drcfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drcfs.h -------------------------------------------------------------------------------- /ttcr/Grid2Drcsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drcsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Drn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drn.h -------------------------------------------------------------------------------- /ttcr/Grid2Drndsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drndsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Drnfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drnfs.h -------------------------------------------------------------------------------- /ttcr/Grid2Drnsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Drnsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Duc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Duc.h -------------------------------------------------------------------------------- /ttcr/Grid2Ducdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Ducdsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Ducfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Ducfm.h -------------------------------------------------------------------------------- /ttcr/Grid2Ducfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Ducfs.h -------------------------------------------------------------------------------- /ttcr/Grid2Ducsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Ducsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Dun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Dun.h -------------------------------------------------------------------------------- /ttcr/Grid2Dundsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Dundsp.h -------------------------------------------------------------------------------- /ttcr/Grid2Dunfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Dunfm.h -------------------------------------------------------------------------------- /ttcr/Grid2Dunfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Dunfs.h -------------------------------------------------------------------------------- /ttcr/Grid2Dunsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid2Dunsp.h -------------------------------------------------------------------------------- /ttcr/Grid3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3D.h -------------------------------------------------------------------------------- /ttcr/Grid3Drc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drc.h -------------------------------------------------------------------------------- /ttcr/Grid3Drcdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drcdsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Drcfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drcfs.h -------------------------------------------------------------------------------- /ttcr/Grid3Drcsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drcsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Drn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drn.h -------------------------------------------------------------------------------- /ttcr/Grid3Drndsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drndsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Drnfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drnfs.h -------------------------------------------------------------------------------- /ttcr/Grid3Drnsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Drnsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Duc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Duc.h -------------------------------------------------------------------------------- /ttcr/Grid3Ducdsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Ducdsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Ducfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Ducfm.h -------------------------------------------------------------------------------- /ttcr/Grid3Ducfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Ducfs.h -------------------------------------------------------------------------------- /ttcr/Grid3Ducsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Ducsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Dun.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Dun.h -------------------------------------------------------------------------------- /ttcr/Grid3Dundsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Dundsp.h -------------------------------------------------------------------------------- /ttcr/Grid3Dunfm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Dunfm.h -------------------------------------------------------------------------------- /ttcr/Grid3Dunfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Dunfs.h -------------------------------------------------------------------------------- /ttcr/Grid3Dunsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Grid3Dunsp.h -------------------------------------------------------------------------------- /ttcr/Interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Interface.h -------------------------------------------------------------------------------- /ttcr/Interpolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Interpolator.h -------------------------------------------------------------------------------- /ttcr/MSHReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/MSHReader.h -------------------------------------------------------------------------------- /ttcr/Metric.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Metric.h -------------------------------------------------------------------------------- /ttcr/Node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node.h -------------------------------------------------------------------------------- /ttcr/Node2Dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dc.h -------------------------------------------------------------------------------- /ttcr/Node2Dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dcd.h -------------------------------------------------------------------------------- /ttcr/Node2Dcsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dcsp.h -------------------------------------------------------------------------------- /ttcr/Node2Dn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dn.h -------------------------------------------------------------------------------- /ttcr/Node2Dnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dnd.h -------------------------------------------------------------------------------- /ttcr/Node2Dnsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node2Dnsp.h -------------------------------------------------------------------------------- /ttcr/Node3Dc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dc.h -------------------------------------------------------------------------------- /ttcr/Node3Dcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dcd.h -------------------------------------------------------------------------------- /ttcr/Node3Dcsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dcsp.h -------------------------------------------------------------------------------- /ttcr/Node3Dn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dn.h -------------------------------------------------------------------------------- /ttcr/Node3Dnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dnd.h -------------------------------------------------------------------------------- /ttcr/Node3Dnsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Node3Dnsp.h -------------------------------------------------------------------------------- /ttcr/Rcv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Rcv.h -------------------------------------------------------------------------------- /ttcr/Rcv2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Rcv2D.h -------------------------------------------------------------------------------- /ttcr/Src.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Src.h -------------------------------------------------------------------------------- /ttcr/Src2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/Src2D.h -------------------------------------------------------------------------------- /ttcr/VTUReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/VTUReader.h -------------------------------------------------------------------------------- /ttcr/ctpl_stl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ctpl_stl.h -------------------------------------------------------------------------------- /ttcr/grids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/grids.h -------------------------------------------------------------------------------- /ttcr/msh2vtk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/msh2vtk.cpp -------------------------------------------------------------------------------- /ttcr/msh2vtk_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/msh2vtk_io.cpp -------------------------------------------------------------------------------- /ttcr/msh2vtk_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/msh2vtk_io.h -------------------------------------------------------------------------------- /ttcr/structs_msh2vtk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/structs_msh2vtk.h -------------------------------------------------------------------------------- /ttcr/structs_ttcr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/structs_ttcr.h -------------------------------------------------------------------------------- /ttcr/ttcr2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr2d.cpp -------------------------------------------------------------------------------- /ttcr/ttcr2ds.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr2ds.cpp -------------------------------------------------------------------------------- /ttcr/ttcr3d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr3d.cpp -------------------------------------------------------------------------------- /ttcr/ttcr3d_raypath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr3d_raypath.cpp -------------------------------------------------------------------------------- /ttcr/ttcr_io.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr_io.cpp -------------------------------------------------------------------------------- /ttcr/ttcr_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr_io.h -------------------------------------------------------------------------------- /ttcr/ttcr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr_t.h -------------------------------------------------------------------------------- /ttcr/ttcr_u.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/ttcr_u.1 -------------------------------------------------------------------------------- /ttcr/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr/utils.h -------------------------------------------------------------------------------- /ttcr_matlab/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/README.txt -------------------------------------------------------------------------------- /ttcr_matlab/class_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/class_handle.hpp -------------------------------------------------------------------------------- /ttcr_matlab/grid2drcfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2drcfs.m -------------------------------------------------------------------------------- /ttcr_matlab/grid2drcfs_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2drcfs_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid2drcsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2drcsp.m -------------------------------------------------------------------------------- /ttcr_matlab/grid2drcsp_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2drcsp_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid2dunsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2dunsp.m -------------------------------------------------------------------------------- /ttcr_matlab/grid2dunsp_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid2dunsp_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid3drcfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3drcfs.m -------------------------------------------------------------------------------- /ttcr_matlab/grid3drcfs_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3drcfs_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid3drcsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3drcsp.m -------------------------------------------------------------------------------- /ttcr_matlab/grid3drcsp_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3drcsp_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid3dunfs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3dunfs.m -------------------------------------------------------------------------------- /ttcr_matlab/grid3dunfs_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3dunfs_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/grid3dunsp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3dunsp.m -------------------------------------------------------------------------------- /ttcr_matlab/grid3dunsp_mex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/groupeLIAMG/ttcr/HEAD/ttcr_matlab/grid3dunsp_mex.cpp -------------------------------------------------------------------------------- /ttcr_matlab/verbose.cpp: -------------------------------------------------------------------------------- 1 | 2 | namespace ttcr { 3 | int verbose = 0; 4 | } 5 | --------------------------------------------------------------------------------