def test_domato(grammar, start_symbol, tries):
    grammar = "grammars/" + grammar + ".txt"
    start = time.time()
    my_grammar = Grammar()
    my_grammar.parse_from_file(grammar)
    for i in range(tries):
        result = my_grammar.generate_symbol(start_symbol)
    end = time.time()
    runtime = end - start
    return runtime
Beispiel #2
0
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License is distributed on an "AS IS" BASIS,
#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
#   See the License for the specific language governing permissions and
#   limitations under the License.

from __future__ import print_function
import os
import re
import random
import sys

from grammar import Grammar

cssgrammar = Grammar()
err = cssgrammar.parse_from_file('css.txt')

htmlgrammar = Grammar()
htmlgrammar.add_import('cssgrammar', cssgrammar)
htmlgrammar.parse_from_file('mathml.txt')

# result_string = htmlgrammar .generate_symbol('svgelement_svg')
# just math, without svg

result_string = htmlgrammar.generate_symbol('mathelement_math')
print('\n' + result_string)