diff options
author | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-13 20:13:52 +0000 |
---|---|---|
committer | grothoff <grothoff@140774ce-b5e7-0310-ab8b-a85725594a96> | 2012-12-13 20:13:52 +0000 |
commit | 9db4f34eec58e263d76dbf84989a024b9346e48f (patch) | |
tree | 82f74c2b01138c2039cd0abc054cc77b1fda1ebf /src/regex/regex.c | |
parent | af589b285b4cff1fc56a9e93d7bf6627517fcb4f (diff) |
-nodebug
git-svn-id: https://gnunet.org/svn/gnunet@25470 140774ce-b5e7-0310-ab8b-a85725594a96
Diffstat (limited to 'src/regex/regex.c')
-rw-r--r-- | src/regex/regex.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regex/regex.c b/src/regex/regex.c index 290a54d2ea..511aa4141a 100644 --- a/src/regex/regex.c +++ b/src/regex/regex.c @@ -2505,7 +2505,7 @@ GNUNET_REGEX_construct_dfa (const char *regex, const size_t len, GNUNET_REGEX_context_init (&ctx); /* Create NFA */ - fprintf (stderr, "N"); + // fprintf (stderr, "N"); nfa = GNUNET_REGEX_construct_nfa (regex, len); if (NULL == nfa) @@ -2527,12 +2527,12 @@ GNUNET_REGEX_construct_dfa (const char *regex, const size_t len, dfa->start = dfa_state_create (&ctx, &nfa_start_eps_cls); automaton_add_state (dfa, dfa->start); - fprintf (stderr, "D"); + // fprintf (stderr, "D"); construct_dfa_states (&ctx, nfa, dfa, dfa->start); GNUNET_REGEX_automaton_destroy (nfa); /* Minimize DFA */ - fprintf (stderr, "M"); + // fprintf (stderr, "M"); dfa_minimize (&ctx, dfa); /* Create proofs and hashes for all states */ |