mathmaker
0.4(alpha)
|
00001 # -*- coding: utf-8 -*- 00002 00003 # Mathmaker creates automatically maths exercises sheets 00004 # with their answers 00005 # Copyright 2006-2014 Nicolas Hainaux <nico_h@users.sourceforge.net> 00006 00007 # This file is part of Mathmaker. 00008 00009 # Mathmaker is free software; you can redistribute it and/or modify 00010 # it under the terms of the GNU General Public License as published by 00011 # the Free Software Foundation; either version 3 of the License, or 00012 # any later version. 00013 00014 # Mathmaker is distributed in the hope that it will be useful, 00015 # but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00017 # GNU General Public License for more details. 00018 00019 # You should have received a copy of the GNU General Public License 00020 # along with Mathmaker; if not, write to the Free Software 00021 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA 00022 00023 # ------------------------------------------------------------------------------ 00024 # -------------------------------------------------------------------------- 00025 # ------------------------------------------------------------------------------ 00026 ## 00027 # @package exercise 00028 # @brief A exercise consists of a questions list plus output methods. 00029 00030 import X_Structure 00031 00032 import X_AlgebraExpressionExpansion 00033 import X_AlgebraExpressionReduction 00034 import X_Calculation 00035 import X_Equation 00036 import X_Factorization 00037 import X_MentalCalculation 00038 import X_RightTriangle 00039 00040 X_Structure = X_Structure.X_Structure 00041 00042 X_AlgebraExpressionExpansion = \ 00043 X_AlgebraExpressionExpansion.X_AlgebraExpressionExpansion 00044 X_AlgebraExpressionReduction = \ 00045 X_AlgebraExpressionReduction.X_AlgebraExpressionReduction 00046 X_Calculation = X_Calculation.X_Calculation 00047 X_Equation = X_Equation.X_Equation 00048 X_Factorization = X_Factorization.X_Factorization 00049 X_MentalCalculation = X_MentalCalculation.X_MentalCalculation 00050 X_RightTriangle = X_RightTriangle.X_RightTriangle