コード例 #1
0
ファイル: mwf_main.py プロジェクト: patrickkuehn/lmfdb
def render_maass_browse_graph(min_level, max_level, min_R, max_R):
    info = {}
    info['contents'] = [paintSvgMaass(min_level, max_level, min_R, max_R)]
    info['min_level'] = min_level
    info['max_level'] = max_level
    info['min_R'] = min_R
    info['max_R'] = max_R
    return render_template("mwf_browse_graph.html", title='Browsing graph of Maass forms', **info)
コード例 #2
0
ファイル: mwf_main.py プロジェクト: AurelPage/lmfdb
def render_maass_browse_graph(min_level, max_level, min_R, max_R):
    r"""
    Render a page with a graph with clickable dots for all
    with min_R <= R <= max_R and levels in the similar range.
    """
    info = {}
    info['contents'] = [paintSvgMaass(min_level, max_level, min_R, max_R)]
    info['min_level'] = min_level
    info['max_level'] = max_level
    info['min_R'] = min_R
    info['max_R'] = max_R
    bread = [('Modular forms', url_for('mf.modular_form_main_page')),
             ('Maass waveforms', url_for('.render_maass_waveforms'))]
    info['bread'] = bread

    return render_template("mwf_browse_graph.html", title='Browsing graph of Maass forms', **info)
コード例 #3
0
ファイル: mwf_main.py プロジェクト: rpollack9974/lmfdb
def render_maass_browse_graph(min_level, max_level, min_R, max_R):
    r"""
    Render a page with a graph with clickable dots for all
    with min_R <= R <= max_R and levels in the similar range.
    """
    info = {}
    info['contents'] = [paintSvgMaass(min_level, max_level, min_R, max_R)]
    info['min_level'] = min_level
    info['max_level'] = max_level
    info['min_R'] = min_R
    info['max_R'] = max_R
    bread = [('Modular forms', url_for('mf.modular_form_main_page')),
             ('Maass waveforms', url_for('.render_maass_waveforms'))]
    info['bread'] = bread

    return render_template("mwf_browse_graph.html",
                           title='Browsing graph of Maass forms',
                           **info)
コード例 #4
0
ファイル: mwf_main.py プロジェクト: jenpaulhus/lmfdb
def render_maass_browse_graph(min_level, max_level, min_R, max_R):
    r"""
    Render a page with a graph with clickable dots for all
    with min_R <= R <= max_R and levels in the similar range.
    """
    info = {}
    info['contents'] = [paintSvgMaass(min_level, max_level, min_R, max_R)]
    info['min_level'] = min_level
    info['max_level'] = max_level
    info['min_R'] = min_R
    info['max_R'] = max_R
    info['coloreven'] = rgbtohex(signtocolour(1))
    info['colorodd'] = rgbtohex(signtocolour(-1))
    bread = [('Modular Forms', url_for('mf.modular_form_main_page')),
             ('Maass Waveforms', url_for('.render_maass_waveforms'))]
    info['bread'] = bread
    info['learnmore'] = learnmore_list()

    return render_template("mwf_browse_graph.html", title='Browsing Graph of Maass Forms', **info)
コード例 #5
0
def render_maass_browse_graph(min_level, max_level, min_R, max_R):
    r"""
    Render a page with a graph with clickable dots for all
    with min_R <= R <= max_R and levels in the similar range.
    """
    info = {}
    info['contents'] = [paintSvgMaass(min_level, max_level, min_R, max_R)]
    info['min_level'] = min_level
    info['max_level'] = max_level
    info['min_R'] = min_R
    info['max_R'] = max_R
    info['coloreven'] = rgbtohex(signtocolour(1))
    info['colorodd'] = rgbtohex(signtocolour(-1))
    bread = [('Modular Forms', url_for('mf.modular_form_main_page')),
             ('Maass Waveforms', url_for('.render_maass_waveforms'))]
    info['bread'] = bread
    info['learnmore'] = learnmore_list()

    return render_template("mwf_browse_graph.html",
                           title='Browsing Graph of Maass Forms',
                           **info)