A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked
From Lousy Parrot, 12 Years ago, written in C++.
Embed
  1. // named parameter version
  2. template <typename Graph, typename P, typename T, typename R>
  3. void
  4. dijkstra_shortest_paths(Graph& g,
  5.   typename graph_traits<Graph>::vertex_descriptor s,
  6.   const bgl_named_params<P, T, R>& params);
  7.  
  8. // non-named parameter version
  9. template <typename Graph, typename DijkstraVisitor,
  10.           typename PredecessorMap, typename DistanceMap,
  11.           typename WeightMap, typename VertexIndexMap, typename CompareFunction, typename CombineFunction,
  12.           typename DistInf, typename DistZero, typename ColorMap = default>
  13. void dijkstra_shortest_paths
  14.   (const Graph& g,
  15.    typename graph_traits<Graph>::vertex_descriptor s,
  16.    PredecessorMap predecessor, DistanceMap distance, WeightMap weight,
  17.    VertexIndexMap index_map,
  18.    CompareFunction compare, CombineFunction combine, DistInf inf, DistZero zero,
  19.    DijkstraVisitor vis, ColorMap color = default)
  20.  
  21. // version that does not initialize the property maps (except for the default color map)
  22. template <class Graph, class DijkstraVisitor,
  23.           class PredecessorMap, class DistanceMap,
  24.           class WeightMap, class IndexMap, class Compare, class Combine,
  25.           class DistZero, class ColorMap>
  26. void
  27. dijkstra_shortest_paths_no_init
  28.   (const Graph& g,
  29.    typename graph_traits<Graph>::vertex_descriptor s,
  30.    PredecessorMap predecessor, DistanceMap distance, WeightMap weight,
  31.    IndexMap index_map,
  32.    Compare compare, Combine combine, DistZero zero,
  33.    DijkstraVisitor vis, ColorMap color = default);

Replies to Untitled rss

Title Name Language When
Re: Untitled Round Motmot cpp 12 Years ago.