![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
GraffitiAI is a Python package for automated mathematical conjecturing, inspired by the legacy of GRAFFITI. It provides tools for exploring relationships between mathematical invariants and properties, with a focus on graph theory and polytopes. This package supports generating conjectures, applying heuristics, and visualizing results.
To install GraffitiAI, use pip
:
# Install GraffitiAI with pip
pip install graffitiai
Here's a simple example to get you started:
from graffitiai import TxGraffiti
# Initialize the Optimist instance
ai = TxGraffiti()
# Load a custom dataset
ai.read_csv("<path_to_your_data>.csv")
# Describe available invariants and hypotheses
ai.describe_invariants_and_hypotheses()
# Generate conjectures
ai.conjecture(
target_invariants=[
"zero_forcing_number",
"total_domination_number",
],
other_invariants=[
"independence_number",
"diameter",
"radius",
"domination_number"
],
hypothesis=[
"a_connected_cubic_and_diamond_free_graph",
"a_connected_and_cubic_graph_which_is_not_k_4",
],
complexity_range=(1, 3),
lower_b_max=None,
upper_b_max=2,
)
# Write the conjectures to the wall!
ai.write_on_the_wall()
# Save conjectures to a PDF
ai.save_conjectures_to_pdf("custom_conjectures.pdf")
Contributions are welcome! If you have suggestions, find bugs, or want to add features, feel free to create an issue or submit a pull request.
This project is licensed under the MIT License. See the LICENSE file for details.
GraffitiAI is inspired by the pioneering work of GRAFFITI and built using the ideas of TxGraffiti and the Optimist.
Randy R. Davila, PhD
FAQs
A Python package for automated mathematical conjecturing.
We found that graffitiai demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.