Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop the stats module (separate package?) #1276

Merged
merged 1 commit into from Jan 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions diofant/printing/latex.py
Expand Up @@ -1471,9 +1471,6 @@ def _print_ProductSet(self, p):
else:
return r' \times '.join(self._print(set) for set in p.sets)

def _print_RandomDomain(self, d):
return 'Domain: ' + self._print(d.as_boolean())

def _print_FiniteSet(self, s):
items = sorted(s.args, key=default_sort_key)
return self._print_set(items)
Expand Down
5 changes: 0 additions & 5 deletions diofant/printing/pretty/pretty.py
Expand Up @@ -1604,11 +1604,6 @@ def _print_KroneckerDelta(self, e):
bot = stringPict(*a.right(' '*b.width()))
return prettyForm(binding=prettyForm.POW, *bot.below(top))

def _print_RandomDomain(self, d):
pform = self._print('Domain: ')
pform = prettyForm(*pform.right(self._print(d.as_boolean())))
return pform

def _print_Tr(self, p):
# TODO: Handle indices
pform = self._print(p.args[0])
Expand Down
3 changes: 0 additions & 3 deletions diofant/printing/str.py
Expand Up @@ -113,9 +113,6 @@ def _print_dict(self, d):
def _print_Dict(self, expr):
return self._print_dict(expr)

def _print_RandomDomain(self, d):
return 'Domain: ' + self._print(d.as_boolean())

def _print_Dummy(self, expr):
return '_' + expr.name

Expand Down
69 changes: 0 additions & 69 deletions diofant/stats/__init__.py

This file was deleted.