Concrete
WebsiteLibrariesProducts & ServicesDevelopersSupport
1.0
1.0
  • What is Concrete?
  • Getting Started
    • Installation
    • Quick Start
    • Compatibility
    • Exactness
    • Performance
  • Tutorials
    • Decorator
    • Formatting
    • Tagging
    • Extensions
    • Table Lookups
    • Rounded Table Lookups
    • Floating Points
    • Simulation
    • Direct Circuits
    • Key Value Database
  • How To
    • Configure
    • Manage Keys
    • Deploy
    • Debug
  • Developer
    • Contribute
    • Terminology and Structure
    • Compilation
    • Fusing
Powered by GitBook

Libraries

  • TFHE-rs
  • Concrete
  • Concrete ML
  • fhEVM

Developers

  • Blog
  • Documentation
  • Github
  • FHE resources

Company

  • About
  • Introduction to FHE
  • Media
  • Careers
On this page

Was this helpful?

Export as PDF
  1. Tutorials

Formatting

PreviousDecoratorNextTagging

Last updated 2 years ago

Was this helpful?

You can convert your compiled circuit into its textual representation by converting it to string:

str(circuit)

If you just want to see the output on your terminal, you can directly print it as well:

print(circuit)

Formatting is just for debugging purposes. It's not possible to create the circuit back from its textual representation. See if that's your goal.

How to Deploy