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

Suppression du warning de division par 0 #164

Merged
merged 3 commits into from
Oct 4, 2024

Conversation

jenovateurs
Copy link
Contributor

@jenovateurs jenovateurs linked an issue Aug 28, 2024 that may be closed by this pull request
openfisca_paris/paris.py Outdated Show resolved Hide resolved
Comment on lines +232 to +237
return div_(
(loyer + charges_forfaitaires_logement - aide_logement),
ressources,
out=ressources_inf,
where=ressources != 0
)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Revue naïve: avec cette modification, le taux d'effort vaut l'infini si les ressources sont nulles. Est-ce que c'est bien ce qu'on veut ? Est-ce que tu pourrais ajouter un scénario de test pour appliquer ce cas ?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

De mémoire, c'est déjà visible en mode : Tu lances les tests sans le fix et tu les relances avec le fix @Shamzic

Copy link
Contributor

@Shamzic Shamzic Sep 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ce que je veux dire, c'est que si paris_taux_effort vaut l'infini, alors paris_condition_taux_effort vaut true et je suis pas si sûr que ça soit forcément ce résultat qui est attendu, mais peut-être que c'est ok après tout

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pour moi, si tu n'as pas de revenu ton taux d'effort est infini si tu dois par exemple payer un loyer.
Si tu as un peu de revenu mathématiquement on peux définir ce taux d'effort comme pourrait le faire une banque dans le cas d'une demande de prêt. Donc pour moi c'est ok. Sauf si tu as une idée pour une autre implémentation. De mon côté, je te propose de partir dans cette direction et itérer. Cela permettra de supprimer l'erreur dans les logs.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok, du coup je mets en image le test qui vérifie la modification actuelle dans le fichier tests/unittests/paris.yaml :

- name: Condition vérifiant si le taux d'effort est suffisamment élevé
  period: 2019-02
  input:
    paris_taux_effort: [0.3, 0.299, infinity]
  output:
    paris_condition_taux_effort: [true, false, true]

@Shamzic Shamzic self-requested a review October 4, 2024 16:46
@jenovateurs jenovateurs merged commit 1af1766 into master Oct 4, 2024
9 checks passed
@jenovateurs jenovateurs deleted the 4566-erreur-de-division-par-0---of branch October 4, 2024 17:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Erreur de division par 0 - OF
2 participants