Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8436013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:04:39+00:00 2026-06-10T07:04:39+00:00

I try to build a very simple calculator supporting x,y,+,-,*,/(,). The idea is simple:

  • 0

I try to build a very simple calculator supporting x,y,+,-,*,/(,). The idea is simple:

  1. Build syntax tree from input string (which may be: “x+3y”)
  2. For given x,y calculate the result by parsing the syntax tree, and inserting ints for x and y.

With boost 1.46, you can easily do both steps at once, using parse_phrase(). However, I have to execute step 2 a million of times, while the parsing does not change. So I’d like to separate this (like it was usual in the classic spirit versions). How can I do this? (Please note: boost 1.46 has no utree data structure yet)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T07:04:40+00:00Added an answer on June 10, 2026 at 7:04 am

    I got a solution meanwhile. It is pretty simple, look at the boost docs linked here.

    The main() function contains this code:

    expression_ast ast;
    ast_print printer;
    bool r = phrase_parse(iter, end, calc, space, ast);
    
    if (r && iter == end)
    {
        // [...]
        printer(ast);
        // [...]
    }
    

    There are actually multiple phrase_parse() functions in boost. There are variations of the phrase_parse without and “variation[s] of the phrase_parse with an additional argument: the parser’s attribute.”, as stated in the boost docs. In the above code, ast is the parser’s attribute; printer then evaluates the ast.

    If we wanted to evaluate the printer with different values from outside, we would pass them to printer before each call of printer(ast).

    Note for 1.46: There’s no boost::utree in yet. However, the AST in this example is a replacement with full functionaliy.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I try to build a very simple website where one can add data into
I will try to explain this very simple. So, I skipped any code which
I try build wrap panel with vertical buttons. Every button consist from image and
I try to build a JSF 2.0 Web application which is using libraries including
I'm trying to build a very simple OpenGL-app under Ubuntu 10.04 (I have a
I am working with AS3 to build a very simple mp3 player on my
I get a very confusing reaction from my ant build-file and I'm wondering whether
I'm trying to build a very simple address book. I created a Contact class
I noticed that when I build even a very simple Java program in Eclipse,
Have a CI build set up in a very simple solution (MVC webapp, Service,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.