From 30b707973336386e86684643da9e460135e117d0 Mon Sep 17 00:00:00 2001 From: Bryne Carruthers <63172116+DrCBeatz@users.noreply.github.com> Date: Mon, 18 Mar 2024 22:09:25 -0400 Subject: [PATCH] Remove MasterTheoremForm from forms.py --- mastertheorem/forms.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/mastertheorem/forms.py b/mastertheorem/forms.py index 491c439..1ba8a44 100644 --- a/mastertheorem/forms.py +++ b/mastertheorem/forms.py @@ -1,8 +1 @@ # mastertheorem/forms.py - -from django import forms - -class MasterTheoremForm(forms.Form): - a = forms.IntegerField(label='a (number of subproblems)', min_value=1) - b = forms.IntegerField(label='b (factor by which the problem size is reduced)', min_value=2) - k = forms.IntegerField(label='k (exponent in the work done outside the recursive calls)', min_value=0) \ No newline at end of file