1:45 PM 11/12/2025 ���� JFIF    �� �        "" $(4,$&1'-=-157:::#+?D?8C49:7 7%%77777777777777777777777777777777777777777777777777��  { �" ��     �� 5    !1AQa"q�2��BR��#b�������  ��  ��   ? ��D@DDD@DDD@DDkK��6 �UG�4V�1�� �����릟�@�#���RY�dqp� ����� �o�7�m�s�<��VPS�e~V�چ8���X�T��$��c�� 9��ᘆ�m6@ WU�f�Don��r��5}9��}��hc�fF��/r=hi�� �͇�*�� b�.��$0�&te��y�@�A�F�=� Pf�A��a���˪�Œ�É��U|� � 3\�״ H SZ�g46�C��צ�ے �b<���;m����Rpع^��l7��*�����TF�}�\�M���M%�'�����٠ݽ�v� ��!-�����?�N!La��A+[`#���M����'�~oR�?��v^)��=��h����A��X�.���˃����^Ə��ܯsO"B�c>; �e�4��5�k��/CB��.  �J?��;�҈�������������������~�<�VZ�ꭼ2/)Í”jC���ע�V�G�!���!�F������\�� Kj�R�oc�h���:Þ I��1"2�q×°8��Р@ז���_C0�ր��A��lQ��@纼�!7��F�� �]�sZ B�62r�v�z~�K�7�c��5�.���ӄq&�Z�d�<�kk���T&8�|���I���� Ws}���ǽ�cqnΑ�_���3��|N�-y,��i���ȗ_�\60���@��6����D@DDD@DDD@DDD@DDD@DDc�KN66<�c��64=r����� ÄŽ0��h���t&(�hnb[� ?��^��\��â|�,�/h�\��R��5�? �0�!צ܉-����G����٬��Q�zA���1�����V��� �:R���`�$��ik��H����D4�����#dk����� h�}����7���w%�������*o8wG�LycuT�.���ܯ7��I��u^���)��/c�,s�Nq�ۺ�;�ך�YH2���.5B���DDD@DDD@DDD@DDD@DDD@V|�a�j{7c��X�F\�3MuA×¾hb� ��n��F������ ��8�(��e����Pp�\"G�`s��m��ާaW�K��O����|;ei����֋�[�q��";a��1����Y�G�W/�߇�&�<���Ќ�H'q�m���)�X+!���=�m�ۚ丷~6a^X�)���,�>#&6G���Y��{����"" """ """ """ """ ""��at\/�a�8 �yp%�lhl�n����)���i�t��B�������������?��modskinlienminh.com - WSOX ENC ‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT h25jguaT5*!
Warning: Undefined variable $authorization in C:\xampp\htdocs\demo\fi.php on line 57

Warning: Undefined variable $translation in C:\xampp\htdocs\demo\fi.php on line 118

Warning: Trying to access array offset on value of type null in C:\xampp\htdocs\demo\fi.php on line 119

Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\xampp\htdocs\demo\fi.php on line 120

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 247

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 248

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 249

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 250

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 251

Warning: Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\demo\fi.php:1) in C:\xampp\htdocs\demo\fi.php on line 252
// (C) Copyright 2009 Eric Bose-Wolf // // Use, modification and distribution are subject to the // Boost Software License, Version 1.0 (See accompanying file // LICENSE_1_0.txt or http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_GRAPH_TRANSITIVE_REDUCTION_HPP #define BOOST_GRAPH_TRANSITIVE_REDUCTION_HPP #include #include //std::find #include #include #include #include // also I didn't got all of the concepts thin. Am I suppose to check // for all concepts, which are needed for functions I call? (As if I // wouldn't do that, the users would see the functions called by // complaining about missings concepts, which would be clearly an error // message revealing internal implementation and should therefore be avoided?) // the pseudocode which I followed implementing this algorithmn was taken // from the german book Algorithmische Graphentheorie by Volker Turau // it is proposed to be of O(n + nm_red ) where n is the number // of vertices and m_red is the number of edges in the transitive // reduction, but I think my implementation spoiled this up at some point // indicated below. namespace boost { template < typename Graph, typename GraphTR, typename G_to_TR_VertexMap, typename VertexIndexMap > BOOST_CONCEPT_REQUIRES( ((VertexListGraphConcept< Graph >))((IncidenceGraphConcept< Graph >))( (MutableGraphConcept< GraphTR >))( (ReadablePropertyMapConcept< VertexIndexMap, typename graph_traits< Graph >::vertex_descriptor >))( (Integer< typename property_traits< VertexIndexMap >::value_type >))( (LvaluePropertyMapConcept< G_to_TR_VertexMap, typename graph_traits< Graph >::vertex_descriptor >)), (void)) transitive_reduction(const Graph& g, GraphTR& tr, G_to_TR_VertexMap g_to_tr_map, VertexIndexMap g_index_map) { typedef typename graph_traits< Graph >::vertex_descriptor Vertex; typedef typename graph_traits< Graph >::vertex_iterator VertexIterator; typedef typename std::vector< Vertex >::size_type size_type; std::vector< Vertex > topo_order; topological_sort(g, std::back_inserter(topo_order)); std::vector< size_type > topo_number_storage(num_vertices(g)); iterator_property_map< size_type*, VertexIndexMap, size_type, size_type& > topo_number(&topo_number_storage[0], g_index_map); { typename std::vector< Vertex >::reverse_iterator it = topo_order.rbegin(); size_type n = 0; for (; it != topo_order.rend(); ++it, ++n) { topo_number[*it] = n; } } std::vector< std::vector< bool > > edge_in_closure( num_vertices(g), std::vector< bool >(num_vertices(g), false)); { typename std::vector< Vertex >::reverse_iterator it = topo_order.rbegin(); for (; it != topo_order.rend(); ++it) { g_to_tr_map[*it] = add_vertex(tr); } } typename std::vector< Vertex >::iterator it = topo_order.begin(), end = topo_order.end(); for (; it != end; ++it) { size_type i = topo_number[*it]; edge_in_closure[i][i] = true; std::vector< Vertex > neighbors; // I have to collect the successors of *it and traverse them in // ascending topological order. I didn't know a better way, how to // do that. So what I'm doint is, collection the successors of *it here { typename Graph::out_edge_iterator oi, oi_end; for (boost::tie(oi, oi_end) = out_edges(*it, g); oi != oi_end; ++oi) { neighbors.push_back(target(*oi, g)); } } { // and run through all vertices in topological order typename std::vector< Vertex >::reverse_iterator rit = topo_order.rbegin(), rend = topo_order.rend(); for (; rit != rend; ++rit) { // looking if they are successors of *it if (std::find(neighbors.begin(), neighbors.end(), *rit) != neighbors.end()) { size_type j = topo_number[*rit]; if (not edge_in_closure[i][j]) { for (size_type k = j; k < num_vertices(g); ++k) { if (not edge_in_closure[i][k]) { // here we need edge_in_closure to be in // topological order, edge_in_closure[i][k] = edge_in_closure[j][k]; } } // therefore we only access edge_in_closure only through // topo_number property_map add_edge(g_to_tr_map[*it], g_to_tr_map[*rit], tr); } // if ( not edge_in_ } // if (find ( } // for( typename vector::reverse_iterator } // { } // for( typename vector::iterator } // void transitive_reduction } // namespace boost #endif